SeaBreeze
ProtocolHelper.h
Go to the documentation of this file.
1 /***************************************************/
39 #ifndef SEABREEZE_PROTOCOLHELPER_H
40 #define SEABREEZE_PROTOCOLHELPER_H
41 
43 
44 namespace seabreeze {
45 
47  public:
48  ProtocolHelper(Protocol *proto);
49  virtual ~ProtocolHelper();
50  Protocol &getProtocol();
51 
52  protected:
53  /* Protected for derived classes to use. */
55  Protocol *protocol;
56  };
57 
58 }
59 
60 #endif
Definition: Protocol.h:44
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42
Definition: ProtocolHelper.h:46