![]() |
Drive Engine
1.0.0
Plateforme de reconstruction 3D
|
The real number parameter datatype interface. More...
#include <IRealNumberParameter.h>
Public Member Functions | |
| virtual void | SetValue (long double number)=0 |
| Sets the parameter value. More... | |
| virtual double | GetValue () const =0 |
| Gets the parameter value. More... | |
Public Member Functions inherited from DriveEngine::IParameter | |
| virtual void | SetName (const char *name)=0 |
| Sets the name of the parameter. More... | |
| virtual const char * | GetName () const =0 |
| Gets the name of the parameter. More... | |
| virtual const char * | GetType () const =0 |
| Gets the type of the parameter. More... | |
| virtual void | SetValueByString (const char *value)=0 |
| Sets the value of the parameter by a string. More... | |
| virtual const char * | GetValueByString ()=0 |
| Gets the value of the parameter by a string. More... | |
Public Member Functions inherited from IExportable | |
| virtual void | Delete () const =0 |
| Deletes the current object. Needed for memory management. More... | |
The real number parameter datatype interface.
It contain as value a real number.
|
pure virtual |
Gets the parameter value.
Exception safety : No-throw guarantee. This member function never throws exceptions.
Implemented in DriveEngine::DefaultRealNumberParameter.
|
pure virtual |
Sets the parameter value.
If the number is null, the parameter value will be zero.
Exception safety : No-throw guarantee. This member function never throws exceptions.
| number | The new real number parameter value. |
Implemented in DriveEngine::DefaultRealNumberParameter.