CARMA C++
NetCmdForwarder.h
Go to the documentation of this file.
1 #ifndef SZA_UTIL_NETCMDFORWARDER_H
2 #define SZA_UTIL_NETCMDFORWARDER_H
3 
11 #include "carma/szautil/NetCmd.h"
12 
13 namespace sza {
14  namespace util {
15 
21  public:
22 
27 
31  virtual ~NetCmdForwarder();
32 
38  virtual void forwardNetCmd(sza::util::NetCmd* netCmd) = 0;
39 
40  }; // End class NetCmdForwarder
41 
42  } // End namespace util
43 } // End namespace sza
44 
45 
46 
47 #endif // End #ifndef SZA_UTIL_NETCMDFORWARDER_H
Tagged: Wed Mar 17 19:42:02 UTC 2004.
virtual void forwardNetCmd(sza::util::NetCmd *netCmd)=0
A virtual method to forward a command received from the ACC.
NetCmdForwarder()
Constructor.
A pure interface class for forwarding network commands received from the control program.
virtual ~NetCmdForwarder()
Destructor.