0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / RWStepRepr / RWStepRepr_RWMaterialProperty.cxx
1 // Created on: 2002-12-14
2 // Created by: data exchange team
3 // Copyright (c) 2002-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
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
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.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
17
18 #include <Interface_Check.hxx>
19 #include <Interface_EntityIterator.hxx>
20 #include <RWStepRepr_RWMaterialProperty.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23 #include <StepRepr_MaterialProperty.hxx>
24
25 //=======================================================================
26 //function : RWStepRepr_RWMaterialProperty
27 //purpose  : 
28 //=======================================================================
29 RWStepRepr_RWMaterialProperty::RWStepRepr_RWMaterialProperty ()
30 {
31 }
32
33 //=======================================================================
34 //function : ReadStep
35 //purpose  : 
36 //=======================================================================
37
38 void RWStepRepr_RWMaterialProperty::ReadStep (const Handle(StepData_StepReaderData)& data,
39                                               const Standard_Integer num,
40                                               Handle(Interface_Check)& ach,
41                                               const Handle(StepRepr_MaterialProperty) &ent) const
42 {
43   // Check number of parameters
44   if ( ! data->CheckNbParams(num,3,ach,"material_property") ) 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
75 void RWStepRepr_RWMaterialProperty::WriteStep (StepData_StepWriter& SW,
76                                                const Handle(StepRepr_MaterialProperty) &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
96 void RWStepRepr_RWMaterialProperty::Share (const Handle(StepRepr_MaterialProperty) &ent,
97                                            Interface_EntityIterator& iter) const
98 {
99
100   // Inherited fields of PropertyDefinition
101
102   iter.AddItem (ent->StepRepr_PropertyDefinition::Definition().Value());
103 }