blob: b4cdf7ee74261e0ff6d2c7dab668aa0fcc105b10 (
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
|
#include <MoniTool_Element.ixx>
void MoniTool_Element::SetHashCode (const Standard_Integer code)
{ thecode = code; }
Standard_Integer MoniTool_Element::GetHashCode () const
{ return thecode; }
Handle(Standard_Type) MoniTool_Element::ValueType () const
{ return DynamicType(); }
Standard_CString MoniTool_Element::ValueTypeName () const
{ return "(finder)"; }
// #### ATTRIBUTES ####
const MoniTool_AttrList& MoniTool_Element::ListAttr () const
{ return theattrib; }
MoniTool_AttrList& MoniTool_Element::ChangeAttr ()
{ return theattrib; }
|