highlighter application  1.1
HCE project utils : highlighter
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator 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