Warnings on vc14 were eliminated
[occt.git] / src / RWStepShape / RWStepShape_RWPointRepresentation.cxx
CommitLineData
b311480e 1// Created on: 2002-12-12
2// Created by: data exchange team
973c2be1 3// Copyright (c) 2002-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
7fd59977 17
42cf5bc1 18#include <Interface_Check.hxx>
19#include <Interface_EntityIterator.hxx>
20#include <RWStepShape_RWPointRepresentation.hxx>
21#include <StepData_StepReaderData.hxx>
22#include <StepData_StepWriter.hxx>
7fd59977 23#include <StepRepr_HArray1OfRepresentationItem.hxx>
ec357c5c 24#include <StepRepr_RepresentationContext.hxx>
42cf5bc1 25#include <StepRepr_RepresentationItem.hxx>
26#include <StepShape_PointRepresentation.hxx>
7fd59977 27
28//=======================================================================
29//function : RWStepShape_RWPointRepresentation
30//purpose :
31//=======================================================================
7fd59977 32RWStepShape_RWPointRepresentation::RWStepShape_RWPointRepresentation ()
33{
34}
35
36//=======================================================================
37//function : ReadStep
38//purpose :
39//=======================================================================
40
41void RWStepShape_RWPointRepresentation::ReadStep (const Handle(StepData_StepReaderData)& data,
42 const Standard_Integer num,
43 Handle(Interface_Check)& ach,
44 const Handle(StepShape_PointRepresentation) &ent) const
45{
46 // Check number of parameters
47 if ( ! data->CheckNbParams(num,3,ach,"point_representation") ) return;
48
49 // Inherited fields of Representation
50
51 Handle(TCollection_HAsciiString) aRepresentation_Name;
52 data->ReadString (num, 1, "representation.name", ach, aRepresentation_Name);
53
54 Handle(StepRepr_HArray1OfRepresentationItem) aRepresentation_Items;
55 Standard_Integer sub2 = 0;
56 if ( data->ReadSubList (num, 2, "representation.items", ach, sub2) ) {
57 Standard_Integer nb0 = data->NbParams(sub2);
58 aRepresentation_Items = new StepRepr_HArray1OfRepresentationItem (1, nb0);
59 Standard_Integer num2 = sub2;
60 for ( Standard_Integer i0=1; i0 <= nb0; i0++ ) {
61 Handle(StepRepr_RepresentationItem) anIt0;
62 data->ReadEntity (num2, i0, "representation_item", ach, STANDARD_TYPE(StepRepr_RepresentationItem), anIt0);
63 aRepresentation_Items->SetValue(i0, anIt0);
64 }
65 }
66
67 Handle(StepRepr_RepresentationContext) aRepresentation_ContextOfItems;
68 data->ReadEntity (num, 3, "representation.context_of_items", ach, STANDARD_TYPE(StepRepr_RepresentationContext), aRepresentation_ContextOfItems);
69
70 // Initialize entity
71 ent->Init(aRepresentation_Name,
72 aRepresentation_Items,
73 aRepresentation_ContextOfItems);
74}
75
76//=======================================================================
77//function : WriteStep
78//purpose :
79//=======================================================================
80
81void RWStepShape_RWPointRepresentation::WriteStep (StepData_StepWriter& SW,
82 const Handle(StepShape_PointRepresentation) &ent) const
83{
84
85 // Inherited fields of Representation
86
87 SW.Send (ent->StepRepr_Representation::Name());
88
89 SW.OpenSub();
90 for (Standard_Integer i1=1; i1 <= ent->StepRepr_Representation::Items()->Length(); i1++ ) {
91 Handle(StepRepr_RepresentationItem) Var0 = ent->StepRepr_Representation::Items()->Value(i1);
92 SW.Send (Var0);
93 }
94 SW.CloseSub();
95
96 SW.Send (ent->StepRepr_Representation::ContextOfItems());
97}
98
99//=======================================================================
100//function : Share
101//purpose :
102//=======================================================================
103
104void RWStepShape_RWPointRepresentation::Share (const Handle(StepShape_PointRepresentation) &ent,
105 Interface_EntityIterator& iter) const
106{
107
108 // Inherited fields of Representation
109
110 for (Standard_Integer i1=1; i1 <= ent->StepRepr_Representation::Items()->Length(); i1++ ) {
111 Handle(StepRepr_RepresentationItem) Var0 = ent->StepRepr_Representation::Items()->Value(i1);
112 iter.AddItem (Var0);
113 }
114
115 iter.AddItem (ent->StepRepr_Representation::ContextOfItems());
116}