mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-21 10:55:33 +03:00
8 lines
256 B
C++
Executable File
8 lines
256 B
C++
Executable File
#include <MoniTool_RealVal.ixx>
|
|
|
|
MoniTool_RealVal::MoniTool_RealVal (const Standard_Real val) { theval = val; }
|
|
|
|
Standard_Real MoniTool_RealVal::Value () const { return theval; }
|
|
|
|
Standard_Real& MoniTool_RealVal::CValue () { return theval; }
|