00001 #ifndef _ots_TemplateTable_h_
00002 #define _ots_TemplateTable_h_
00003
00004 #include "otsdaq-core/TableCore/TableBase.h"
00005
00006 namespace ots
00007 {
00008 class TemplateTable : public TableBase
00009 {
00010 public:
00011 TemplateTable(void);
00012 virtual ~TemplateTable(void);
00013
00014
00015 void init(ConfigurationManager* configManager);
00016
00017
00018
00019 private:
00020
00021 struct ColTemplate
00022 {
00023 std::string const colColumnName_ = "ColumnName";
00024 } colNames_;
00025 };
00026 }
00027 #endif