- initial import

This commit is contained in:
2018-06-05 11:05:37 +03:00
commit e1a4931375
4673 changed files with 1383093 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef __AGENT_JSON_H
#define __AGENT_JSON_H
#include <string>
class Agent
{
protected:
void* mContext;
public:
Agent();
~Agent();
void write(const std::string& command);
bool waitForData(int milliseconds);
std::string read();
};
#endif