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