Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
ithermzone.h
Go to the documentation of this file.
1 // ithermzone.h
2 #pragma once
3 
9 namespace zone
10 {
13  class IThermZone
14  {
15  public:
17  virtual QString getModelName() const=0;
19  virtual void setZoneBasedTemp(double temp) =0;
20  };
21 } // namespace zone
22 // EoF
virtual QString getModelName() const =0
Returns the name of the current Thermal model in the zone.
virtual void setZoneBasedTemp(double temp)=0
Sets the zone temperature to temp.
Interface to access zone thermal data.
Definition: ithermzone.h:13