blob: 2b048620e8f28821af11327a731d2da003d0b555 (
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// File: PNaming_NamedShape.cxx
// Created: Tue Apr 15 16:57:30 1997
// Author: VAUTHIER Jean-Claude
// <jcv@bigbox.paris1.matra-dtv.fr>
#include <PNaming_NamedShape.ixx>
//=======================================================================
//function : PNaming_NamedShape
//purpose :
//=======================================================================
PNaming_NamedShape::PNaming_NamedShape()
:myShapeStatus(0),myVersion(0)
{
}
//=======================================================================
//function : NbShapes
//purpose :
//=======================================================================
Standard_Integer PNaming_NamedShape::NbShapes() const
{
if (myNewShapes.IsNull()) return 0;
return myNewShapes->Length();
}
//=======================================================================
//function : OldShapes
//purpose :
//=======================================================================
void PNaming_NamedShape::OldShapes
(const Handle(PTopoDS_HArray1OfShape1)& theShapes)
{ myOldShapes = theShapes; }
//=======================================================================
//function : OldShapes
//purpose :
//=======================================================================
Handle(PTopoDS_HArray1OfShape1) PNaming_NamedShape::OldShapes() const
{ return myOldShapes; }
//=======================================================================
//function : NewShapes
//purpose :
//=======================================================================
void PNaming_NamedShape::NewShapes
(const Handle(PTopoDS_HArray1OfShape1)& theShapes)
{ myNewShapes = theShapes; }
//=======================================================================
//function : NewShapes
//purpose :
//=======================================================================
Handle(PTopoDS_HArray1OfShape1) PNaming_NamedShape::NewShapes() const
{ return myNewShapes; }
//=======================================================================
//function : ShapeStatus
//purpose :
//=======================================================================
void PNaming_NamedShape::ShapeStatus
(const Standard_Integer theShapeStatus)
{ myShapeStatus = theShapeStatus; }
//=======================================================================
//function : ShapeStatus
//purpose :
//=======================================================================
Standard_Integer PNaming_NamedShape::ShapeStatus() const
{ return myShapeStatus; }
//=======================================================================
//function : Version
//purpose :
//=======================================================================
void PNaming_NamedShape::Version
(const Standard_Integer theVersion)
{ myVersion = theVersion; }
//=======================================================================
//function : Version
//purpose :
//=======================================================================
Standard_Integer PNaming_NamedShape::Version() const
{ return myVersion; }
|