1/**
2 * @file json-rpc.h
3 * @date 02.08.2011
4 * @author Peter Spiess-Knafl
5 * @brief json-rpc.h
6 *
7 * This file is meant to include all necessary .h files of this framework.
8 */
9
10#ifndef JSONRPCCPP_SERVER_H_
11#define JSONRPCCPP_SERVER_H_
12
13#include <jsonrpccpp/common/exception.h>
14#include <jsonrpccpp/server/abstractserver.h>
15
16#endif /* JSONRPCCPP_SERVER_H_ */
17