SeaBreeze
Ventana.h
Go to the documentation of this file.
1 /***************************************************/
30 #ifndef VENTANA_H
31 #define VENTANA_H
32 
33 #include "common/devices/Device.h"
34 
35 namespace seabreeze {
36 
37  class Ventana : public Device {
38  public:
39  Ventana();
40  virtual ~Ventana();
41 
42  /* Overridden from Device to allow detection of thermoelectric
43  * capability.
44  */
45  virtual bool initialize(const Bus &bus);
46 
47  /* Must be overridden from Device */
48  virtual ProtocolFamily getSupportedProtocol(FeatureFamily family, BusFamily bus);
49  };
50 
51 }
52 
53 #endif /* VENTANA_H */
Definition: ProtocolFamily.h:39
Definition: BusFamily.h:38
Definition: Ventana.h:37
Definition: FeatureFamily.h:39
Definition: Bus.h:48
Definition: Device.h:64
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42