SeaBreeze
QEProThermoElectricFeature.h
Go to the documentation of this file.
1 /***************************************************/
32 #ifndef QEPROTHERMOELECTRICFEATURE_H
33 #define QEPROTHERMOELECTRICFEATURE_H
34 
36 
37 namespace seabreeze {
39  public:
41  virtual ~QEProThermoElectricFeature();
42 
43  /* Inherited from ThermoElectricFeatureBase where they are pure virtual */
44  virtual double getDefaultSetPointCelsius(const Protocol &protocol,
45  const Bus &bus) throw (FeatureException);
46  virtual bool getDefaultThermoElectricEnable(const Protocol &protocol,
47  const Bus &bus) throw (FeatureException);
48 
49  /* Override from Feature */
50  virtual bool initialize(const Protocol &protocol, const Bus &bus)
51  throw (FeatureException);
52  };
53 }
54 
55 #endif /* QEPROTHERMOELECTRICFEATURE_H */
Definition: ThermoElectricFeatureBase.h:50
Definition: Protocol.h:44
Definition: FeatureException.h:43
Definition: Bus.h:48
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42
Definition: QEProThermoElectricFeature.h:38