1 #include "otsdaq/SOAPUtilities/SOAPParameters.h"
8 SOAPParameters::SOAPParameters(
void) { ; }
11 SOAPParameters::SOAPParameters(
const std::string& name,
const std::string& value)
12 :
Parameters<std::string, std::string>(name, value)
25 SOAPParameters::~SOAPParameters(
void) { ; }
28 void SOAPParameters::addParameter(
const std::string& name,
const std::string& value)
30 theParameters_[name] = value;
34 void SOAPParameters::addParameter(
const std::string& name,
const int value)
36 std::stringstream sValue;
38 theParameters_[name] = sValue.str();