hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
DataBase.hpp
Go to the documentation of this file.
1 #ifndef DATA_BASE_HPP
2 #define DATA_BASE_HPP
3 
4 #include "HCEConstants.hpp"
5 
6 namespace HCE
7 {
8  class DataBase// : public ObjectBasic
9  {
10  protected:
12  public:
13  DataBase(ComponentType inType = CT_DEFAULT):type(inType) {}
15  virtual ~DataBase() {}
16  };
17 }
18 
19 #endif