otsdaq  v2_05_02_indev
SOAPParameters.h
1 #ifndef _ots_SOAPParameters_h
2 #define _ots_SOAPParameters_h
3 
4 #include "otsdaq/SOAPUtilities/DataStructs.h"
5 #include "otsdaq/SOAPUtilities/SOAPParameter.h"
6 
7 #include <string>
8 
9 namespace ots
10 {
11 class SOAPParameters : public Parameters<std::string, std::string>
12 {
13  public:
14  SOAPParameters(void);
15  SOAPParameters(const std::string& name, const std::string& value = "");
16  SOAPParameters(SOAPParameter parameter);
17  ~SOAPParameters(void);
18  void addParameter(const std::string& name, const std::string& value = "");
19  void addParameter(const std::string& name, const int value);
20 };
21 } // namespace ots
22 #endif