highlighter application  1.1
HCE project utils : highlighter
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
OutDataHighlight.hpp
Go to the documentation of this file.
1 
14 #ifndef OUT_DATA_HIGHLIGHT_HPP
15 #define OUT_DATA_HIGHLIGHT_HPP
16 
17 #include <Poco/SharedPtr.h>
18 
19 #include "HCEConstants.hpp"
20 #include "DataBase.hpp"
21 
22 namespace HCE
23 {
24  class OutDataHighlight: public DataBase
25  {
26  public:
27  OutDataHighlight(ComponentType inType) : DataBase(inType) {};
28  virtual ~OutDataHighlight() {}
29  };
30 }
31 
32 #endif