Files
rtphone/src/engine/agent/Agent_Interface.h
T
2018-06-05 11:05:37 +03:00

20 lines
254 B
C++

#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