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 "demo_build_info.h"
8 : #include "demo_package.hpp"
9 : #include "demo/demo_module.hpp"
10 : #include "hash/hash_module.hpp"
11 : #include "pingpong/pingpong_module.hpp"
12 :
13 : #include <wfc/module/module_list.hpp>
14 :
15 : namespace demo{
16 :
17 : namespace
18 : {
19 0 : class impl: public wfc::module_list<
20 : demo_build_info,
21 : storage_module,
22 : hash::hash_module,
23 : pingpong::pingpong_module
24 : >
25 : {};
26 : }
27 :
28 0 : demo_package::demo_package()
29 0 : : package( std::make_shared<impl>() )
30 : {
31 0 : }
32 :
33 3 : }
|