otsdaq  v2_01_00
TemplateConfiguration.h
1 #ifndef _ots_TemplateConfiguration_h_
2 #define _ots_TemplateConfiguration_h_
3 
4 #include "otsdaq-core/ConfigurationDataFormats/ConfigurationBase.h"
5 
6 
7 namespace ots
8 {
9 
11 {
12 
13 public:
14 
16  virtual ~TemplateConfiguration(void);
17 
18  //Methods
19  void init(ConfigurationManager *configManager);
20 
21  //Getters
22 
23 private:
24 
25  //Column names
26  struct ColTemplate
27  {
28  std::string const colColumnName_ = "ColumnName";
29  } colNames_;
30 
31 };
32 }
33 #endif