Configuration
 All Classes Files Functions Pages
ConfigurationFactory.h
Go to the documentation of this file.
1 
6 #ifndef ALICEO2_CONFIGURATION_INCLUDE_CONFIGURATIONFACTORY_H_
7 #define ALICEO2_CONFIGURATION_INCLUDE_CONFIGURATIONFACTORY_H_
8 
9 #include <string>
10 #include <memory>
12 
13 namespace o2
14 {
15 namespace configuration
16 {
17 
19 {
20  public:
29  static std::unique_ptr<ConfigurationInterface> getConfiguration(const std::string& uri);
30 };
31 
32 } // Configuration
33 } // AliceO2
34 
35 #endif // ALICEO2_CONFIGURATION_INCLUDE_CONFIGURATIONFACTORY_H_
Interface for putting and getting configuration parameters.
static std::unique_ptr< ConfigurationInterface > getConfiguration(const std::string &uri)
Definition: ConfigurationFactory.cxx:57
Definition: ConfigurationFactory.h:18