otsdaq  v1_01_04
 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  ~SupervisorInfo(void)
15  {;}
16 
17  //Getters
18  std::string getStatus(void) const
19  {
20  return status_;
21  }
22 
23  //Setters
24  void setStatus(std::string status)
25  {
26  status_=status;
27  }
28 
29 private:
30  std::string status_;
31  std::string URL_;
32  int port_;
33  std::string fullURL_;
34 };
35 
36 }
37 
38 #endif