icinga2/jsonrpc/i2-jsonrpc.h

23 lines
456 B
C
Raw Normal View History

#ifndef I2JSONRPC_H
#define I2JSONRPC_H
2012-03-28 13:24:49 +02:00
#include <map>
2012-03-28 13:24:49 +02:00
#include <i2-base.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 */
2012-03-28 13:24:49 +02:00
2012-04-18 15:22:25 +02:00
#include "variant.h"
#include "dictionary.h"
2012-04-16 16:27:41 +02:00
#include "message.h"
2012-03-28 13:24:49 +02:00
#include "netstring.h"
2012-04-16 16:27:41 +02:00
#include "jsonrpcrequest.h"
#include "jsonrpcresponse.h"
2012-03-28 13:24:49 +02:00
#include "jsonrpcclient.h"
#include "jsonrpcserver.h"
#endif /* I2JSONRPC_H */