Itasca C++ Interface
Loading...
Searching...
No Matches
icreepmodule.h
Go to the documentation of this file.
1// icreepmodule.h
2#pragma once
3
9#include "base/src/base.h"
10
11namespace zone
12{
16 {
17 public:
19 inline static const TType type_ = 0x4c815a0b;
21 virtual double getTotalTime() const =0;
23 virtual void setTotalTime(double d)=0;
24 };
25} // namespace zone
26// EoF
One stop include for all objects defined as part of base interface.
Interface to the Creep Module, , see IModuleExtension.
Definition icreepmodule.h:16
virtual double getTotalTime() const =0
Returns the accumulated crep time, see setTime()
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition icreepmodule.h:19
virtual void setTotalTime(double d)=0
Sets the accumulated creep time, see getTime()
uint32 TType
class type indicator
Definition basedef.h:46