Line data Source code
1 : //
2 : // Author: Vladimir Migashko <migashko@gmail.com>, (C) 2013-2015
3 : //
4 : // Copyright: See COPYING file that comes with this distribution
5 : //
6 :
7 : #include "prefixdb_gateway_multiton.hpp"
8 : #include "prefixdb_gateway.hpp"
9 :
10 : #include <wfc/module/multiton.hpp>
11 : #include <wfc/module/instance.hpp>
12 : #include <wfc/name.hpp>
13 :
14 : namespace wamba{ namespace prefixdb{
15 :
16 0 : WFC_NAME2(prefixdb_gateway_name, "prefixdb-gateway")
17 :
18 0 : class prefixdb_gateway_multiton::impl: public ::wfc::jsonrpc::gateway_multiton
19 : <
20 : prefixdb_gateway_name,
21 : gateway::method_list,
22 : gateway::prefixdb_interface
23 : >
24 : {
25 : };
26 :
27 0 : prefixdb_gateway_multiton::prefixdb_gateway_multiton()
28 0 : : wfc::component( std::make_shared<impl>() )
29 : {
30 0 : }
31 :
32 3 : }}
|