mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
19 lines
259 B
C++
19 lines
259 B
C++
#ifndef JSONRPCSERVER_H
|
|
#define JSONRPCSERVER_H
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class JsonRpcServer : public TCPServer
|
|
{
|
|
public:
|
|
typedef shared_ptr<JsonRpcServer> Ptr;
|
|
typedef weak_ptr<JsonRpcServer> WeakPtr;
|
|
|
|
JsonRpcServer(void);
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* JSONRPCSERVER_H */
|