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