git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1295 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
18 lines
391 B
C++
18 lines
391 B
C++
#ifndef __COOLEXPERIMENT_HPP__
|
|
#define __COOLEXPERIMENT_HPP__
|
|
|
|
#include "controller/ExperimentFlow.hpp"
|
|
#include "jobserver/JobClient.hpp"
|
|
|
|
class L4SysExperiment : public fi::ExperimentFlow {
|
|
fi::JobClient m_jc;
|
|
public:
|
|
L4SysExperiment() : m_jc("localhost") {}
|
|
bool run();
|
|
private:
|
|
std::string sanitised(std::string in_str);
|
|
fi::BaseEvent* waitIOOrOther(bool clear_output);
|
|
};
|
|
|
|
#endif
|