00001 #ifndef _ots_SOAPParameter_h
00002 #define _ots_SOAPParameter_h
00003
00004 #include "otsdaq-core/SOAPUtilities/DataStructs.h"
00005
00006 #include <string>
00007
00008 namespace ots
00009 {
00010 class SOAPParameter : public Parameter<std::string, std::string>
00011 {
00012 public:
00013 SOAPParameter(std::string name = "", std::string value = "")
00014 : Parameter<std::string, std::string>(name, value)
00015 {
00016 ;
00017 }
00018 ~SOAPParameter(void) { ; }
00019
00020 bool isEmpty(void)
00021 {
00022 if(name_ == "" && value_ == "")
00023 return true;
00024 return false;
00025 }
00026 };
00027 }
00028 #endif