0024947: Redesign OCCT legacy type system -- automatic
[occt.git] / src / RWStepBasic / RWStepBasic_RWDocumentRepresentationType.cxx
CommitLineData
b311480e 1// Created on: 2000-05-10
2// Created by: Andrey BETENEV
973c2be1 3// Copyright (c) 2000-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 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
973c2be1 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.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
7fd59977 17
18#include <RWStepBasic_RWDocumentRepresentationType.ixx>
ec357c5c 19#include <StepBasic_Document.hxx>
7fd59977 20
21//=======================================================================
22//function : RWStepBasic_RWDocumentRepresentationType
23//purpose :
24//=======================================================================
25
26RWStepBasic_RWDocumentRepresentationType::RWStepBasic_RWDocumentRepresentationType ()
27{
28}
29
30//=======================================================================
31//function : ReadStep
32//purpose :
33//=======================================================================
34
35void RWStepBasic_RWDocumentRepresentationType::ReadStep (const Handle(StepData_StepReaderData)& data,
36 const Standard_Integer num,
37 Handle(Interface_Check)& ach,
38 const Handle(StepBasic_DocumentRepresentationType) &ent) const
39{
40 // Check number of parameters
41 if ( ! data->CheckNbParams(num,2,ach,"document_representation_type") ) return;
42
43 // Own fields of DocumentRepresentationType
44
45 Handle(TCollection_HAsciiString) aName;
46 data->ReadString (num, 1, "name", ach, aName);
47
48 Handle(StepBasic_Document) aRepresentedDocument;
49 data->ReadEntity (num, 2, "represented_document", ach, STANDARD_TYPE(StepBasic_Document), aRepresentedDocument);
50
51 // Initialize entity
52 ent->Init(aName,
53 aRepresentedDocument);
54}
55
56//=======================================================================
57//function : WriteStep
58//purpose :
59//=======================================================================
60
61void RWStepBasic_RWDocumentRepresentationType::WriteStep (StepData_StepWriter& SW,
62 const Handle(StepBasic_DocumentRepresentationType) &ent) const
63{
64
65 // Own fields of DocumentRepresentationType
66
67 SW.Send (ent->Name());
68
69 SW.Send (ent->RepresentedDocument());
70}
71
72//=======================================================================
73//function : Share
74//purpose :
75//=======================================================================
76
77void RWStepBasic_RWDocumentRepresentationType::Share (const Handle(StepBasic_DocumentRepresentationType) &ent,
78 Interface_EntityIterator& iter) const
79{
80
81 // Own fields of DocumentRepresentationType
82
83 iter.AddItem (ent->RepresentedDocument());
84}