2012-04-02 08:56:30 +02:00
|
|
|
#ifndef I2JSONRPC_H
|
|
|
|
#define I2JSONRPC_H
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-03-29 20:03:29 +02:00
|
|
|
#include <map>
|
2012-03-28 13:24:49 +02:00
|
|
|
#include <i2-base.h>
|
2012-04-06 08:56:52 +02:00
|
|
|
#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 */
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
#include "netstring.h"
|
|
|
|
#include "jsonrpcmessage.h"
|
|
|
|
#include "jsonrpcclient.h"
|
|
|
|
#include "jsonrpcserver.h"
|
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* I2JSONRPC_H */
|