Bridge++  Version 1.5.4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
parameterManager_XML.h
Go to the documentation of this file.
1 
14 #ifndef PARAMETERMANAGER_XML_INCLUDED
15 #define PARAMETERMANAGER_XML_INCLUDED
16 
17 #include "parameterManager.h"
18 #include <string>
19 
21 
33 #ifdef USE_XML
34 
35 class ParameterManager_XML : public ParameterManager
36 {
37  public:
38  static const std::string class_name;
39 
40  ParameterManager_XML() {}
41 
43  void read_params(const std::string& params_file, Parameters& params);
44 };
45 
46 #endif /* USE_XML */
47 
48 #endif
Class for parameters.
Definition: parameters.h:46
static const std::string class_name
virtual void read_params(const std::string &params_file, Parameters &params)=0
Base class of parameter manager.