0024947: Redesign OCCT legacy type system -- automatic
[occt.git] / src / RWStepBasic / RWStepBasic_RWIdentificationAssignment.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 <RWStepBasic_RWIdentificationAssignment.ixx>
19 #include <StepBasic_IdentificationRole.hxx>
20
21 //=======================================================================
22 //function : RWStepBasic_RWIdentificationAssignment
23 //purpose  : 
24 //=======================================================================
25
26 RWStepBasic_RWIdentificationAssignment::RWStepBasic_RWIdentificationAssignment ()
27 {
28 }
29
30 //=======================================================================
31 //function : ReadStep
32 //purpose  : 
33 //=======================================================================
34
35 void RWStepBasic_RWIdentificationAssignment::ReadStep (const Handle(StepData_StepReaderData)& data,
36                                                        const Standard_Integer num,
37                                                        Handle(Interface_Check)& ach,
38                                                        const Handle(StepBasic_IdentificationAssignment) &ent) const
39 {
40   // Check number of parameters
41   if ( ! data->CheckNbParams(num,2,ach,"identification_assignment") ) return;
42
43   // Own fields of IdentificationAssignment
44
45   Handle(TCollection_HAsciiString) aAssignedId;
46   data->ReadString (num, 1, "assigned_id", ach, aAssignedId);
47
48   Handle(StepBasic_IdentificationRole) aRole;
49   data->ReadEntity (num, 2, "role", ach, STANDARD_TYPE(StepBasic_IdentificationRole), aRole);
50
51   // Initialize entity
52   ent->Init(aAssignedId,
53             aRole);
54 }
55
56 //=======================================================================
57 //function : WriteStep
58 //purpose  : 
59 //=======================================================================
60
61 void RWStepBasic_RWIdentificationAssignment::WriteStep (StepData_StepWriter& SW,
62                                                         const Handle(StepBasic_IdentificationAssignment) &ent) const
63 {
64
65   // Own fields of IdentificationAssignment
66
67   SW.Send (ent->AssignedId());
68
69   SW.Send (ent->Role());
70 }
71
72 //=======================================================================
73 //function : Share
74 //purpose  : 
75 //=======================================================================
76
77 void RWStepBasic_RWIdentificationAssignment::Share (const Handle(StepBasic_IdentificationAssignment) &ent,
78                                                     Interface_EntityIterator& iter) const
79 {
80
81   // Own fields of IdentificationAssignment
82
83   iter.AddItem (ent->Role());
84 }