1 #include "otsdaq-core/SOAPUtilities/SOAPParameters.h"
9 SOAPParameters::SOAPParameters(
void)
13 SOAPParameters::SOAPParameters(std::string name, std::string value) :
14 Parameters<std::string,std::string>(name,value)
23 SOAPParameters::~SOAPParameters(
void)
27 void SOAPParameters::addParameter(
const std::string name,
const std::string value)
29 theParameters_[name] = value;
33 void SOAPParameters::addParameter(
const std::string name,
const int value)
35 std::stringstream sValue;
37 theParameters_[name] = sValue.str();