mirror of https://github.com/Icinga/icinga2.git
18 lines
275 B
C
18 lines
275 B
C
|
#ifndef I2_JSONRPCSERVER_H
|
||
|
#define I2_JSONRPCSERVER_H
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class JsonRpcServer : public TCPServer
|
||
|
{
|
||
|
public:
|
||
|
typedef shared_ptr<JsonRpcServer> RefType;
|
||
|
typedef weak_ptr<JsonRpcServer> WeakRefType;
|
||
|
|
||
|
JsonRpcServer(void);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* I2_JSONRPCSERVER_H */
|