00001 #ifndef _ots_SOAPParameters_h
00002 #define _ots_SOAPParameters_h
00003
00004 #include "otsdaq-core/SOAPUtilities/DataStructs.h"
00005 #include "otsdaq-core/SOAPUtilities/SOAPParameter.h"
00006
00007 #include <string>
00008
00009 namespace ots
00010 {
00011 class SOAPParameters : public Parameters<std::string, std::string>
00012 {
00013 public:
00014 SOAPParameters(void);
00015 SOAPParameters(const std::string& name, const std::string& value = "");
00016 SOAPParameters(SOAPParameter parameter);
00017 ~SOAPParameters(void);
00018 void addParameter(const std::string& name, const std::string& value = "");
00019 void addParameter(const std::string& name, const int value);
00020 };
00021 }
00022 #endif