My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
NetCmdForwarder.h
Go to the documentation of this file.
1 #ifndef GCP_UTIL_NETCMDFORWARDER_H
2 #define GCP_UTIL_NETCMDFORWARDER_H
3 
11 #include "gcp/util/common/NetCmd.h"
12 
13 namespace gcp {
14  namespace util {
15 
21  public:
22 
27 
31  virtual ~NetCmdForwarder();
32 
38  virtual void forwardNetCmd(gcp::util::NetCmd* netCmd) = 0;
39 
40  }; // End class NetCmdForwarder
41 
42  } // End namespace util
43 } // End namespace gcp
44 
45 
46 
47 
48 #endif // End #ifndef GCP_UTIL_NETCMDFORWARDER_H
virtual void forwardNetCmd(gcp::util::NetCmd *netCmd)=0
Definition: NetCmd.h:21
virtual ~NetCmdForwarder()
Definition: NetCmdForwarder.cc:17
NetCmdForwarder()
Definition: NetCmdForwarder.cc:12
Definition: NetCmdForwarder.h:20