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