SeaBreeze
SerialNumberProtocolInterface.h
Go to the documentation of this file.
1 /***************************************************/
40 #ifndef SERIALNUMBERPROTOCOLINTERFACE_H
41 #define SERIALNUMBERPROTOCOLINTERFACE_H
42 
43 #include "common/SeaBreeze.h"
44 #include "common/buses/Bus.h"
47 #include <vector>
48 
49 namespace seabreeze {
50 
52  public:
55  virtual std::string *readSerialNumber(const Bus &bus)
56  throw (ProtocolException) = 0;
57  virtual unsigned char readSerialNumberMaximumLength(const Bus &bus)
58  throw (ProtocolException) = 0;
59  };
60 
61 }
62 
63 #endif /* SERIALNUMBERPROTOCOLINTERFACE_H */
Definition: Protocol.h:44
Definition: SerialNumberProtocolInterface.h:51
Definition: ProtocolException.h:44
Definition: Bus.h:48
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42
Definition: ProtocolHelper.h:46