SeaBreeze
ThermoElectricFeatureInterface.h
Go to the documentation of this file.
1 /***************************************************/
33 #ifndef THERMOELECTRICFEATUREINTERFACE_H
34 #define THERMOELECTRICFEATUREINTERFACE_H
35 
36 #include "common/buses/Bus.h"
40 
41 namespace seabreeze {
42 
44  public:
45  virtual ~ThermoElectricFeatureInterface() = 0;
46  virtual void setThermoElectricEnable(const Protocol &protocol,
47  const Bus &bus, bool enable) throw (FeatureException) = 0;
48  virtual double getTemperatureCelsius(const Protocol &protocol,
49  const Bus &bus) throw (FeatureException) = 0;
50  virtual void setTemperatureSetPointCelsius(const Protocol &protocol,
51  const Bus &bus, double degreesC)
53 
54  virtual double getDefaultSetPointCelsius(const Protocol &protocol,
55  const Bus &bus) throw (FeatureException) = 0;
56  virtual bool getDefaultThermoElectricEnable(const Protocol &protocol,
57  const Bus &bus) throw (FeatureException) = 0;
58  };
59 
60  /* Default implementation for (otherwise) pure virtual destructor */
61  inline ThermoElectricFeatureInterface::~ThermoElectricFeatureInterface() {}
62 }
63 
64 #endif /* THERMOELECTRICFEATUREINTERFACE_H */
Definition: Protocol.h:44
Definition: ThermoElectricFeatureInterface.h:43
Definition: FeatureException.h:43
Definition: Bus.h:48
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42
Definition: IllegalArgumentException.h:43