1234567891011121314151617 |
- #ifndef MACHINEIOMAN_H
- #define MACHINEIOMAN_H
- #include "ioman.h"
- class MachineIoMan : public IoMan {
- public:
- using IoMan::IoMan;
- bool parseJson(Json::Value *root, string jsonstring);
- bool handleJson(Json::Value root);
- void printErrorMessage(std::string msg);
- void printWelcomeMessage();
- };
- #endif
|