blob: f59ee2cb1d15d1ecc3fa82ff4d25c7b2f27da68f (
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
|
// File: PDataStd_Integer.cxx
// Created: Wed Apr 9 13:23:12 1997
// Author: VAUTHIER Jean-Claude
#include <PDataStd_Integer.ixx>
//=======================================================================
//function : PDataStd_Integer
//purpose :
//=======================================================================
PDataStd_Integer::PDataStd_Integer () {}
//=======================================================================
//function : PDataStd_Integer
//purpose :
//=======================================================================
PDataStd_Integer::PDataStd_Integer (const Standard_Integer V) : myValue (V) { }
//=======================================================================
//function : Set
//purpose :
//=======================================================================
void PDataStd_Integer::Set (const Standard_Integer V)
{
myValue = V;
}
//=======================================================================
//function : Get
//purpose :
//=======================================================================
Standard_Integer PDataStd_Integer::Get () const
{
return myValue;
}
|