Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
ithermmodule.h
Go to the documentation of this file.
1 // ithermmodule.h
2 #pragma once
3 
9 namespace zone
10 {
14  {
15  public:
17  inline static const TType type_ = 0x3c815bf6;
19  virtual double getTotalTime() const =0;
21  virtual void setTotalTime(double d)=0;
23  virtual double getRatio() const =0;
24  };
25 } // namespace zone
26 // EoF
virtual double getRatio() const =0
Returns the current Thermal Ratio.
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition: ithermmodule.h:17
virtual double getTotalTime() const =0
Returns the accumulated thermal time.
unsigned int TType
class type indicator
Definition: basedef.h:41
virtual void setTotalTime(double d)=0
Sets the accumulated thermal time to value d.
Interface to the thermal module.
Definition: ithermmodule.h:13