ADTF  3.18.2
iclientconnector.h
1 /*************************************************************************
2  * libjson-rpc-cpp
3  *************************************************************************
4  * @file abstractclientconnector.h
5  * @date 02.01.2013
6  * @author Peter Spiess-Knafl <dev@spiessknafl.at>
7  * @license See attached LICENSE.txt
8  ************************************************************************/
9 
10 #ifndef JSONRPC_CPP_CLIENTCONNECTOR_H_
11 #define JSONRPC_CPP_CLIENTCONNECTOR_H_
12 
13 #include <string>
14 #include <jsonrpccpp/common/exception.h>
15 
16 namespace jsonrpc
17 {
19  {
20  public:
21  virtual ~IClientConnector(){}
22 
23  virtual void SendRPCMessage(const std::string& message, std::string& result) = 0;
24  };
25 } /* namespace jsonrpc */
26 #endif /* JSONRPC_CPP_CLIENTCONNECTOR_H_ */