mirror of https://github.com/Icinga/icinga2.git
20 lines
380 B
C++
20 lines
380 B
C++
#ifndef I2JSONRPC_H
|
|
#define I2JSONRPC_H
|
|
|
|
#include <map>
|
|
#include <i2-base.h>
|
|
#include <cJSON.h>
|
|
|
|
#ifdef I2_JSONRPC_BUILD
|
|
# define I2_JSONRPC_API I2_EXPORT
|
|
#else /* I2_JSONRPC_BUILD */
|
|
# define I2_JSONRPC_API I2_IMPORT
|
|
#endif /* I2_JSONRPC_BUILD */
|
|
|
|
#include "netstring.h"
|
|
#include "jsonrpcmessage.h"
|
|
#include "jsonrpcclient.h"
|
|
#include "jsonrpcserver.h"
|
|
|
|
#endif /* I2JSONRPC_H */
|