identt
SyncServiceList.hpp
Go to the documentation of this file.
1 
33 #ifndef _IDENTT_HRPC_SYNC_SERVICE_LIST_HPP_
34 #define _IDENTT_HRPC_SYNC_SERVICE_LIST_HPP_
35 
36 #include <query/NotFoundService.hpp>
37 #include <query/QueryBase.hpp>
40 
41 #define IDENTT_SYNCSERVICELIST_SCOPE_HTTP \
42  identt::query::NotFoundService<HttpServerT> {sharedtable,server,IDENTT_SERVICE_SCOPE_HTTP}; \
43  identt::hrpc::RemoteKeeper::pointer rkeeper = std::make_shared<identt::hrpc::RemoteKeeper>(sharedtable); \
44  identt::hrpc::HrpcMasterEndpointService<HttpServerT>(sharedtable,server,rkeeper,IDENTT_SERVICE_SCOPE_HTTP); \
45  identt::hrpc::HrpcRemoteEndpointService<HttpServerT>(sharedtable,server,rkeeper,IDENTT_SERVICE_SCOPE_HTTP);
46 
47 #define IDENTT_SYNCSERVICELIST_SCOPE_HTTPS \
48  identt::query::NotFoundService<HttpServerT> {sharedtable,server,IDENTT_SERVICE_SCOPE_HTTP};
49 
50 #endif // _IDENTT_HRPC_SYNC_SERVICE_LIST_HPP_