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
|
#include <RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.ixx>
#include <StepGeom_GeometricRepresentationContext.hxx>
#include <Interface_EntityIterator.hxx>
#include <StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.hxx>
RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext::RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext () {}
void RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext::ReadStep
(const Handle(StepData_StepReaderData)& data,
const Standard_Integer num0,
Handle(Interface_Check)& ach,
const Handle(StepGeom_GeometricRepresentationContextAndParametricRepresentationContext)& ent) const
{
Standard_Integer num = num0;
// --- Instance of plex componant GeometricRepresentationContext ---
if (!data->CheckNbParams(num,1,ach,"geometric_representation_context")) return;
// --- field : coordinateSpaceDimension ---
Standard_Integer aCoordinateSpaceDimension;
//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
data->ReadInteger (num,1,"coordinate_space_dimension",ach,aCoordinateSpaceDimension);
num = data->NextForComplex(num);
// --- Instance of plex componant ParametricRepresentationContext ---
if (!data->CheckNbParams(num,0,ach,"parametric_representation_context")) return;
num = data->NextForComplex(num);
// --- Instance of common supertype RepresentationContext ---
if (!data->CheckNbParams(num,2,ach,"representation_context")) return;
// --- field : contextIdentifier ---
Handle(TCollection_HAsciiString) aContextIdentifier;
//szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
data->ReadString (num,1,"context_identifier",ach,aContextIdentifier);
// --- field : contextType ---
Handle(TCollection_HAsciiString) aContextType;
//szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
data->ReadString (num,2,"context_type",ach,aContextType);
//--- Initialisation of the red entity ---
ent->Init(aContextIdentifier,aContextType,aCoordinateSpaceDimension);
}
void RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext::WriteStep
(StepData_StepWriter& SW,
const Handle(StepGeom_GeometricRepresentationContextAndParametricRepresentationContext)& ent) const
{
// --- Instance of plex componant GeometricRepresentationContext ---
SW.StartEntity("GEOMETRIC_REPRESENTATION_CONTEXT");
// --- field : coordinateSpaceDimension ---
SW.Send(ent->CoordinateSpaceDimension());
// --- Instance of plex componant ParametricRepresentationContext ---
SW.StartEntity("PARAMETRIC_REPRESENTATION_CONTEXT");
// --- Instance of common supertype RepresentationContext ---
SW.StartEntity("REPRESENTATION_CONTEXT");
// --- field : contextIdentifier ---
SW.Send(ent->ContextIdentifier());
// --- field : contextType ---
SW.Send(ent->ContextType());
}
void RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext::Share(const Handle(StepGeom_GeometricRepresentationContextAndParametricRepresentationContext)& ent, Interface_EntityIterator& iter) const
{
}
|