SeaBreeze
HR2000.h
Go to the documentation of this file.
1 /***************************************************/
30 #ifndef HR2000_H
31 #define HR2000_H
32 
33 #include "common/devices/Device.h"
34 
35 namespace seabreeze {
36 
37  class HR2000 : public Device {
38  public:
39  HR2000();
40  virtual ~HR2000();
41 
42  /* Must be overridden from Device */
43  virtual ProtocolFamily getSupportedProtocol(FeatureFamily family, BusFamily bus);
44 
45  };
46 
47 }
48 
49 #endif /* HR2000_H */
Definition: HR2000.h:37
Definition: ProtocolFamily.h:39
Definition: BusFamily.h:38
Definition: FeatureFamily.h:39
Definition: Device.h:64
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42