Files
fail/core/experiments/weathermonitor/experiment.hpp

15 lines
384 B
C++

#ifndef __WEATHERMONITOR_EXPERIMENT_HPP__
#define __WEATHERMONITOR_EXPERIMENT_HPP__
#include "controller/ExperimentFlow.hpp"
#include "jobserver/JobClient.hpp"
class WeathermonitorExperiment : public fail::ExperimentFlow {
fail::JobClient m_jc;
public:
WeathermonitorExperiment() : m_jc("ios.cs.tu-dortmund.de") {}
bool run();
};
#endif // __WEATHERMONITOR_EXPERIMENT_HPP__