otsdaq  v2_05_02_indev
SOAPParameter.h
1 #ifndef _ots_SOAPParameter_h
2 #define _ots_SOAPParameter_h
3 
4 #include "otsdaq/SOAPUtilities/DataStructs.h"
5 
6 #include <string>
7 
8 namespace ots
9 {
10 class SOAPParameter : public Parameter<std::string, std::string>
11 {
12  public:
13  SOAPParameter(std::string name = "", std::string value = "") : Parameter<std::string, std::string>(name, value) { ; }
14  ~SOAPParameter(void) { ; }
15 
16  bool isEmpty(void)
17  {
18  if(name_ == "" && value_ == "")
19  return true;
20  return false;
21  }
22 };
23 } // namespace ots
24 #endif