Warnings on vc14 were eliminated
[occt.git] / src / RWStepRepr / RWStepRepr_RWProductDefinitionShape.cxx
CommitLineData
b311480e 1// Created on: 2000-07-03
2// Created by: Andrey BETENEV
973c2be1 3// Copyright (c) 2000-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.1
7fd59977 17
42cf5bc1 18#include <Interface_Check.hxx>
19#include <Interface_EntityIterator.hxx>
20#include <RWStepRepr_RWProductDefinitionShape.hxx>
21#include <StepData_StepReaderData.hxx>
22#include <StepData_StepWriter.hxx>
23#include <StepRepr_ProductDefinitionShape.hxx>
7fd59977 24
25//=======================================================================
26//function : RWStepRepr_RWProductDefinitionShape
27//purpose :
28//=======================================================================
7fd59977 29RWStepRepr_RWProductDefinitionShape::RWStepRepr_RWProductDefinitionShape ()
30{
31}
32
33//=======================================================================
34//function : ReadStep
35//purpose :
36//=======================================================================
37
38void RWStepRepr_RWProductDefinitionShape::ReadStep (const Handle(StepData_StepReaderData)& data,
39 const Standard_Integer num,
40 Handle(Interface_Check)& ach,
41 const Handle(StepRepr_ProductDefinitionShape) &ent) const
42{
43 // Check number of parameters
44 if ( ! data->CheckNbParams(num,3,ach,"product_definition_shape") ) return;
45
46 // Inherited fields of PropertyDefinition
47
48 Handle(TCollection_HAsciiString) aPropertyDefinition_Name;
49 data->ReadString (num, 1, "property_definition.name", ach, aPropertyDefinition_Name);
50
51 Handle(TCollection_HAsciiString) aPropertyDefinition_Description;
52 Standard_Boolean hasPropertyDefinition_Description = Standard_True;
53 if ( data->IsParamDefined (num,2) ) {
54 data->ReadString (num, 2, "property_definition.description", ach, aPropertyDefinition_Description);
55 }
56 else {
57 hasPropertyDefinition_Description = Standard_False;
58 }
59
60 StepRepr_CharacterizedDefinition aPropertyDefinition_Definition;
61 data->ReadEntity (num, 3, "property_definition.definition", ach, aPropertyDefinition_Definition);
62
63 // Initialize entity
64 ent->Init(aPropertyDefinition_Name,
65 hasPropertyDefinition_Description,
66 aPropertyDefinition_Description,
67 aPropertyDefinition_Definition);
68}
69
70//=======================================================================
71//function : WriteStep
72//purpose :
73//=======================================================================
74
75void RWStepRepr_RWProductDefinitionShape::WriteStep (StepData_StepWriter& SW,
76 const Handle(StepRepr_ProductDefinitionShape) &ent) const
77{
78
79 // Inherited fields of PropertyDefinition
80
81 SW.Send (ent->StepRepr_PropertyDefinition::Name());
82
83 if ( ent->StepRepr_PropertyDefinition::HasDescription() ) {
84 SW.Send (ent->StepRepr_PropertyDefinition::Description());
85 }
86 else SW.SendUndef();
87
88 SW.Send (ent->StepRepr_PropertyDefinition::Definition().Value());
89}
90
91//=======================================================================
92//function : Share
93//purpose :
94//=======================================================================
95
96void RWStepRepr_RWProductDefinitionShape::Share (const Handle(StepRepr_ProductDefinitionShape) &ent,
97 Interface_EntityIterator& iter) const
98{
99
100 // Inherited fields of PropertyDefinition
101
102 iter.AddItem (ent->StepRepr_PropertyDefinition::Definition().Value());
103}