tahoma2d/toonz/sources/toonzfarm/include/tserverproxy.h
Toshihiro Shimizu 890dddabbd first commit
2016-03-19 02:57:51 +09:00

24 lines
398 B
C++

#ifndef TSERVERPROXY_H
#define TSERVERPROXY_H
#include <string>
//-----------------------------------------------------------------------------
class TServerProxy
{
public:
TServerProxy(const std::string hostName, int portId);
~TServerProxy();
bool testConnection() const;
int exec(int argc, char *argv[], std::string &reply);
private:
std::string m_hostName;
int m_portId;
};
#endif