icinga2/jsonrpc/jsonrpcserver.h

18 lines
275 B
C
Raw Normal View History

2012-03-28 13:24:49 +02:00
#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 */