summaryrefslogtreecommitdiff
path: root/src/PXCAFDoc/PXCAFDoc_Volume.cxx
blob: 154f7a590c082f7371bc179499790ee14a9df242 (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_Volume.cxx
// Created:	Fri Sep  8 18:01:19 2000
// Author:	data exchange team
//		<det@nordox.nnov.matra-dtv.fr>


#include <PXCAFDoc_Volume.ixx>

//=======================================================================
//function : PXCAFDoc_Volume
//purpose  : 
//=======================================================================

PXCAFDoc_Volume::PXCAFDoc_Volume () { }

//=======================================================================
//function : PXCAFDoc_Volume
//purpose  : 
//=======================================================================

PXCAFDoc_Volume::PXCAFDoc_Volume (const Standard_Real V) : myValue (V) {}
    
//=======================================================================
//function : Set
//purpose  : 
//=======================================================================

void PXCAFDoc_Volume::Set (const Standard_Real V) 
{
  myValue = V;
}

//=======================================================================
//function : Get
//purpose  : 
//=======================================================================

Standard_Real PXCAFDoc_Volume::Get () const
{
  return myValue;
}