My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
ControlNetCmdForwarder.h
1 #ifndef GCP_UTIL_CONTROLNETCMDFORWARDER_H
2 #define GCP_UTIL_CONTROLNETCMDFORWARDER_H
3 
11 #include "gcp/util/common/NetCmdForwarder.h"
12 
13 namespace gcp {
14  namespace util {
15 
17  public:
18 
23 
27  virtual ~ControlNetCmdForwarder();
28 
29  //------------------------------------------------------------
30  // Overwrite the base-class method by which all rtc commands for
31  // the antennas are processed
32  //------------------------------------------------------------
33 
39  virtual void forwardNetCmd(gcp::util::NetCmd* netCmd);
40 
41  private:
42  }; // End class ControlNetCmdForwarder
43 
44  } // End namespace util
45 } // End namespace gcp
46 
47 
48 
49 
50 #endif // End #ifndef GCP_UTIL_CONTROLNETCMDFORWARDER_H
Definition: ControlNetCmdForwarder.h:16
virtual void forwardNetCmd(gcp::util::NetCmd *netCmd)
Definition: ControlNetCmdForwarder.cc:22
ControlNetCmdForwarder()
Definition: ControlNetCmdForwarder.cc:12
virtual ~ControlNetCmdForwarder()
Definition: ControlNetCmdForwarder.cc:17
Definition: NetCmd.h:21
Definition: NetCmdForwarder.h:20