blob: 6150aa677e9333ca2889bf552cd7213c6fb5bd13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#include <MoniTool_OptValue.ixx>
MoniTool_OptValue::MoniTool_OptValue (const Standard_CString opt)
: theopt (opt)
{
// CKY: NO CALL TO A VIRTUAL METHOD WITHIN THE CONSTRUCTOR
// Explicite Load must be done after creation
}
void MoniTool_OptValue::Clear ()
{ theval.Nullify(); }
void MoniTool_OptValue::SetValue
(const Handle(MoniTool_Profile)& prof,
const Standard_CString opt, const Standard_Boolean fast)
{
if (prof.IsNull()) return;
if (!opt || opt[0] == '\0') return;
Handle(Standard_Transient) val;
if (fast) prof->FastValue (opt,val);
else prof->Value (opt,val);
if (!val.IsNull()) theval = val;
}
Standard_Boolean MoniTool_OptValue::IsLoaded () const
{ return (!theval.IsNull()); }
Handle(MoniTool_Profile) MoniTool_OptValue::Prof () const
{
Handle(MoniTool_Profile) prof;
return prof;
}
void MoniTool_OptValue::Load (const Standard_Boolean fast)
{ SetValue (Prof(),theopt.ToCString(),fast); }
void MoniTool_OptValue::Value (Handle(Standard_Transient)& val) const
{ val = theval; }
//=======================================================================
//function : Delete
//purpose :
//=======================================================================
void MoniTool_OptValue::Delete()
{}
|