git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1319 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
18 lines
352 B
C++
18 lines
352 B
C++
#ifndef __MH_TEST_EXPERIMENT_HPP__
|
|
#define __MH_TEST_EXPERIMENT_HPP__
|
|
|
|
#include "controller/ExperimentFlow.hpp"
|
|
#include "jobserver/JobClient.hpp"
|
|
|
|
class MHTestExperiment : public fail::ExperimentFlow {
|
|
private:
|
|
fail::JobClient m_jc;
|
|
public:
|
|
MHTestExperiment() { }
|
|
~MHTestExperiment() { }
|
|
|
|
bool run();
|
|
};
|
|
|
|
#endif // __MH_TEST_EXPERIMENT_HPP__
|