tahoma2d/toonz/sources/toonzfarm/include/tserverproxy.h

24 lines
416 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef TSERVERPROXY_H
#define TSERVERPROXY_H
#include <string>
//-----------------------------------------------------------------------------
2016-06-15 18:43:10 +12:00
class TServerProxy {
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
TServerProxy(const std::string hostName, int portId);
~TServerProxy();
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
bool testConnection() const;
int exec(int argc, char *argv[], std::string &reply);
2016-03-19 06:57:51 +13:00
private:
2016-06-15 18:43:10 +12:00
std::string m_hostName;
int m_portId;
2016-03-19 06:57:51 +13:00
};
#endif