blob: 3321410bc1f1a2c9e72e8eb55264046a6bedd730 (
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
|
// File: PXCAFDoc_Area.cxx
// Created: Fri Sep 8 18:01:19 2000
// Author: data exchange team
// <det@nordox.nnov.matra-dtv.fr>
#include <PXCAFDoc_Area.ixx>
//=======================================================================
//function : PXCAFDoc_Area
//purpose :
//=======================================================================
PXCAFDoc_Area::PXCAFDoc_Area () { }
//=======================================================================
//function : PXCAFDoc_Area
//purpose :
//=======================================================================
PXCAFDoc_Area::PXCAFDoc_Area (const Standard_Real V) : myValue (V) {}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
void PXCAFDoc_Area::Set (const Standard_Real V)
{
myValue = V;
}
//=======================================================================
//function : Get
//purpose :
//=======================================================================
Standard_Real PXCAFDoc_Area::Get () const
{
return myValue;
}
|