blob: 4e7a79bf8c970925f531c458f4a104d2010c9f21 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// File: PXCAFDoc_DimTol.cxx
// Created: 10.12.08 11:46:02
// Author: Pavel TELKOV
// Copyright: Open CASCADE 2008
#include <PXCAFDoc_DimTol.ixx>
//=======================================================================
//function : PXCAFDoc_DimTol
//purpose :
//=======================================================================
PXCAFDoc_DimTol::PXCAFDoc_DimTol ()
{}
//=======================================================================
//function : PXCAFDoc_DimTol
//purpose :
//=======================================================================
PXCAFDoc_DimTol::PXCAFDoc_DimTol
(const Standard_Integer theKind,
const Handle(PColStd_HArray1OfReal)& theVal,
const Handle(PCollection_HAsciiString)& theName,
const Handle(PCollection_HAsciiString)& theDescr)
: myKind(theKind),
myVal(theVal),
myName(theName),
myDescr(theDescr)
{}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
void PXCAFDoc_DimTol::Set (const Standard_Integer theKind,
const Handle(PColStd_HArray1OfReal)& theVal,
const Handle(PCollection_HAsciiString)& theName,
const Handle(PCollection_HAsciiString)& theDescr)
{
myKind = theKind;
myVal = theVal;
myName = theName;
myDescr = theDescr;
}
//=======================================================================
//function : GetKind
//purpose :
//=======================================================================
Standard_Integer PXCAFDoc_DimTol::GetKind () const
{
return myKind;
}
//=======================================================================
//function : GetVal
//purpose :
//=======================================================================
Handle(PColStd_HArray1OfReal) PXCAFDoc_DimTol::GetVal () const
{
return myVal;
}
//=======================================================================
//function : GetName
//purpose :
//=======================================================================
Handle(PCollection_HAsciiString) PXCAFDoc_DimTol::GetName () const
{
return myName;
}
//=======================================================================
//function : GetDescription
//purpose :
//=======================================================================
Handle(PCollection_HAsciiString) PXCAFDoc_DimTol::GetDescription () const
{
return myDescr;
}
|