0033018: Coding - get rid of unused headers [Plugin to ShapeAnalysis]
[occt.git] / src / RWStepBasic / RWStepBasic_RWNameAssignment.cxx
1 // Created on: 2000-05-10
2 // Created by: Andrey BETENEV
3 // Copyright (c) 2000-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.1
17
18 #include <Interface_EntityIterator.hxx>
19 #include <RWStepBasic_RWNameAssignment.hxx>
20 #include <StepBasic_NameAssignment.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23
24 //=======================================================================
25 //function : RWStepBasic_RWNameAssignment
26 //purpose  : 
27 //=======================================================================
28 RWStepBasic_RWNameAssignment::RWStepBasic_RWNameAssignment ()
29 {
30 }
31
32 //=======================================================================
33 //function : ReadStep
34 //purpose  : 
35 //=======================================================================
36
37 void RWStepBasic_RWNameAssignment::ReadStep (const Handle(StepData_StepReaderData)& data,
38                                              const Standard_Integer num,
39                                              Handle(Interface_Check)& ach,
40                                              const Handle(StepBasic_NameAssignment) &ent) const
41 {
42   // Check number of parameters
43   if ( ! data->CheckNbParams(num,1,ach,"name_assignment") ) return;
44
45   // Own fields of NameAssignment
46
47   Handle(TCollection_HAsciiString) aAssignedName;
48   data->ReadString (num, 1, "assigned_name", ach, aAssignedName);
49
50   // Initialize entity
51   ent->Init(aAssignedName);
52 }
53
54 //=======================================================================
55 //function : WriteStep
56 //purpose  : 
57 //=======================================================================
58
59 void RWStepBasic_RWNameAssignment::WriteStep (StepData_StepWriter& SW,
60                                               const Handle(StepBasic_NameAssignment) &ent) const
61 {
62
63   // Own fields of NameAssignment
64
65   SW.Send (ent->AssignedName());
66 }
67
68 //=======================================================================
69 //function : Share
70 //purpose  : 
71 //=======================================================================
72
73 void RWStepBasic_RWNameAssignment::Share (const Handle(StepBasic_NameAssignment) &,
74                                           Interface_EntityIterator&) const
75 {
76   // Own fields of NameAssignment
77 }