1 // Created on: 1999-11-26
2 // Created by: Andrey BETENEV
3 // Copyright (c) 1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16 
17 // Generator:	ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
18 
19 #include <Interface_Check.hxx>
20 #include <Interface_EntityIterator.hxx>
21 #include <RWStepBasic_RWAction.hxx>
22 #include <StepBasic_Action.hxx>
23 #include <StepBasic_ActionMethod.hxx>
24 #include <StepData_StepReaderData.hxx>
25 #include <StepData_StepWriter.hxx>
26 
27 //=======================================================================
28 //function : RWStepBasic_RWAction
29 //purpose  :
30 //=======================================================================
RWStepBasic_RWAction()31 RWStepBasic_RWAction::RWStepBasic_RWAction ()
32 {
33 }
34 
35 //=======================================================================
36 //function : ReadStep
37 //purpose  :
38 //=======================================================================
39 
ReadStep(const Handle (StepData_StepReaderData)& data,const Standard_Integer num,Handle (Interface_Check)& ach,const Handle (StepBasic_Action)& ent) const40 void RWStepBasic_RWAction::ReadStep (const Handle(StepData_StepReaderData)& data,
41                                      const Standard_Integer num,
42                                      Handle(Interface_Check)& ach,
43                                      const Handle(StepBasic_Action) &ent) const
44 {
45   // Check number of parameters
46   if ( ! data->CheckNbParams(num,3,ach,"action") ) return;
47 
48   // Own fields of Action
49 
50   Handle(TCollection_HAsciiString) aName;
51   data->ReadString (num, 1, "name", ach, aName);
52 
53   Handle(TCollection_HAsciiString) aDescription;
54   Standard_Boolean hasDescription = Standard_True;
55   if ( data->IsParamDefined (num,2) ) {
56     data->ReadString (num, 2, "description", ach, aDescription);
57   }
58   else {
59     hasDescription = Standard_False;
60   }
61 
62   Handle(StepBasic_ActionMethod) aChosenMethod;
63   data->ReadEntity (num, 3, "chosen_method", ach, STANDARD_TYPE(StepBasic_ActionMethod), aChosenMethod);
64 
65   // Initialize entity
66   ent->Init(aName,
67             hasDescription,
68             aDescription,
69             aChosenMethod);
70 }
71 
72 //=======================================================================
73 //function : WriteStep
74 //purpose  :
75 //=======================================================================
76 
WriteStep(StepData_StepWriter & SW,const Handle (StepBasic_Action)& ent) const77 void RWStepBasic_RWAction::WriteStep (StepData_StepWriter& SW,
78                                       const Handle(StepBasic_Action) &ent) const
79 {
80 
81   // Own fields of Action
82 
83   SW.Send (ent->Name());
84 
85   if ( ent->HasDescription() ) {
86     SW.Send (ent->Description());
87   }
88   else SW.SendUndef();
89 
90   SW.Send (ent->ChosenMethod());
91 }
92 
93 //=======================================================================
94 //function : Share
95 //purpose  :
96 //=======================================================================
97 
Share(const Handle (StepBasic_Action)& ent,Interface_EntityIterator & iter) const98 void RWStepBasic_RWAction::Share (const Handle(StepBasic_Action) &ent,
99                                   Interface_EntityIterator& iter) const
100 {
101 
102   // Own fields of Action
103 
104   iter.AddItem (ent->ChosenMethod());
105 }
106