Line data Source code
1 :
2 : #include "client_module.hpp"
3 : #include "client_tcp/client_multiton.hpp"
4 : #include <wfc/module/component_list.hpp>
5 : #include <wfc/name.hpp>
6 :
7 : namespace wfc{ namespace io{
8 :
9 : namespace
10 : {
11 0 : WFC_NAME2(module_name, "client")
12 :
13 0 : class impl: public ::wfc::component_list<
14 : module_name,
15 : client_multiton
16 : >
17 : {
18 0 : virtual std::string description() const override
19 : {
20 0 : return "Client components";
21 : }
22 : };
23 : }
24 :
25 0 : client_module::client_module()
26 0 : : module( std::make_shared<impl>() )
27 : {
28 0 : }
29 :
30 3 : }}
|