nanojpeg: campaign work-in-progress

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1778 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
hsc
2012-10-19 17:52:31 +00:00
parent e8c12b4580
commit 2b5a2161df
7 changed files with 373 additions and 11 deletions

View File

@ -0,0 +1,22 @@
#ifndef __NANOJPEG_CAMPAIGN_HPP__
#define __NANOJPEG_CAMPAIGN_HPP__
#include "cpn/Campaign.hpp"
#include "comm/ExperimentData.hpp"
#include "util/Logger.hpp"
#include "nanojpeg.pb.h"
class NanoJPEGExperimentData : public fail::ExperimentData {
public:
NanoJPEGProtoMsg msg;
NanoJPEGExperimentData() : fail::ExperimentData(&msg) {}
};
class NanoJPEGCampaign : public fail::Campaign {
fail::Logger m_log;
public:
NanoJPEGCampaign() : m_log("nJPEG Campaign") {}
virtual bool run();
};
#endif // __NANOJPEG_CAMPAIGN_HPP__