blob: 146081dfeb1757e803fc30136b78256167bcd7fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// File: MoniTool_ValueInterpret.cxx
// Created: Mon Feb 28 18:59:29 2000
// Author: data exchange team
// <det@kinox>
#include <MoniTool_ValueInterpret.hxx>
//=======================================================================
//function : MoniTool_ValueInterpret_Type_
//purpose :
//=======================================================================
Handle(Standard_Type)& STANDARD_TYPE(MoniTool_ValueInterpret)
{
static Handle(Standard_Type) _aType =
new Standard_Type("MoniTool_ValueInterpret", sizeof(MoniTool_ValueInterpret), 0, NULL);
return _aType;
}
|