DRDE/AusRegCliever/include/ausRegTK.h

33 lines
715 B
C
Raw Normal View History

2014-01-11 00:58:45 +00:00
#ifdef MD_AUSREG
#include "se/PollRequestCommand.hpp"
#include "se/PollResponse.hpp"
#include "session/Transaction.hpp"
#include "session/SessionManagerFactory.hpp"
#include "session/SessionManager.hpp"
#include "session/Timer.hpp"
#include "session/TestEnvironment.hpp"
#endif
2014-01-08 05:00:04 +00:00
2014-01-11 00:58:45 +00:00
#include "common/init.hpp"
#ifdef MD_AUSREG
#include "common/Test.hpp"
#include <pthread.h>
#include <memory>
#include <unistd.h>
#include <vector>
#endif
2014-01-08 05:00:04 +00:00
class ausRegEPPTK {
friend class masterDaemon;
2014-01-10 20:05:42 +00:00
public: int tkScenario;
// See the Toolkit Overview. At this level supposedly it can do everything.
2014-01-11 00:58:45 +00:00
ausRegEPPTK() { tkScenario = ACTK_OTEA; }
2014-01-08 05:00:04 +00:00
bool didInit(const std::string propertiesFilePath);
2014-01-11 00:58:45 +00:00
void doOTEA();
2014-01-08 05:00:04 +00:00
};