otsdaq  v2_05_02_indev
MakeTable.h
1 #ifndef _ots_makeTable_h_
2 #define _ots_makeTable_h_
3 // Using LibraryManager, find the correct library and return an instance of the specified
4 // configuration interface.
5 
6 #include <string>
7 
8 namespace ots
9 {
10 class TableBase;
11 
12 TableBase* makeTable(std::string const& tablePluginName);
13 
14 } // namespace ots
15 
16 #endif /* _ots_makeTable_h_ */