tdaq-develop-2025-02-12
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 = "")
15  {
16  ;
17  }
18  ~SOAPParameter(void) { ; }
19 
20  bool isEmpty(void)
21  {
22  if(name_ == "" && value_ == "")
23  return true;
24  return false;
25  }
26 };
27 } // namespace ots
28 #endif