highlighter application  1.1
HCE project utils : highlighter
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
ComponentsManagerFactory.hpp
Go to the documentation of this file.
1 #ifndef COMPONENTS_MANAGER_FACTORY_HPP
2 #define COMPONENTS_MANAGER_FACTORY_HPP
3 
4 #include <Poco/DynamicFactory.h>
5 #include <string>
6 
7 #include "ComponentManager.hpp"
8 
9 namespace HCE
10 {
11  class ComponentsManagerFactory: public Poco::DynamicFactory<ComponentManager>
12  {
13  public:
14  ComponentsManagerFactory() : Poco::DynamicFactory<ComponentManager>() {};
17  };
18 }
19 
20 #endif