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