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