otsdaq  v1_01_02
 All Classes Namespaces Functions
SupervisorInfo.h
1 #ifndef _ots_SupervisorInfo_h_
2 #define _ots_SupervisorInfo_h_
3 
4 #include <string>
5 
6 namespace ots
7 {
8 
10 {
11 public:
12  SupervisorInfo (void) : status_("Unknown"), URL_("")
13  {
14  ;
15  }
16  ~SupervisorInfo(void)
17  {
18  ;
19  }
20 
21  //Getters
22  std::string getStatus(void) const
23  {
24  return status_;
25  }
26 
27  //Setters
28  void setStatus(std::string status)
29  {
30  status_=status;
31  }
32 
33 private:
34  std::string status_;
35  std::string URL_;
36  int port_;
37  std::string fullURL_;
38 };
39 
40 }
41 
42 #endif