0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / RWStepRepr / RWStepRepr_RWProductConcept.cxx
CommitLineData
b311480e 1// Created on: 1999-11-26
2// Created by: Andrey BETENEV
3// Copyright (c) 1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
b311480e 16
7fd59977 17// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
7fd59977 18
42cf5bc1 19#include <Interface_Check.hxx>
20#include <Interface_EntityIterator.hxx>
21#include <RWStepRepr_RWProductConcept.hxx>
ec357c5c 22#include <StepBasic_ProductConceptContext.hxx>
42cf5bc1 23#include <StepData_StepReaderData.hxx>
24#include <StepData_StepWriter.hxx>
25#include <StepRepr_ProductConcept.hxx>
7fd59977 26
27//=======================================================================
28//function : RWStepRepr_RWProductConcept
29//purpose :
30//=======================================================================
7fd59977 31RWStepRepr_RWProductConcept::RWStepRepr_RWProductConcept ()
32{
33}
34
35//=======================================================================
36//function : ReadStep
37//purpose :
38//=======================================================================
39
40void RWStepRepr_RWProductConcept::ReadStep (const Handle(StepData_StepReaderData)& data,
41 const Standard_Integer num,
42 Handle(Interface_Check)& ach,
43 const Handle(StepRepr_ProductConcept) &ent) const
44{
45 // Check number of parameters
46 if ( ! data->CheckNbParams(num,4,ach,"product_concept") ) return;
47
48 // Own fields of ProductConcept
49
50 Handle(TCollection_HAsciiString) aId;
51 data->ReadString (num, 1, "id", ach, aId);
52
53 Handle(TCollection_HAsciiString) aName;
54 data->ReadString (num, 2, "name", ach, aName);
55
56 Handle(TCollection_HAsciiString) aDescription;
57 Standard_Boolean hasDescription = Standard_True;
58 if ( data->IsParamDefined (num,3) ) {
59 data->ReadString (num, 3, "description", ach, aDescription);
60 }
61 else {
62 hasDescription = Standard_False;
63 }
64
65 Handle(StepBasic_ProductConceptContext) aMarketContext;
66 data->ReadEntity (num, 4, "market_context", ach, STANDARD_TYPE(StepBasic_ProductConceptContext), aMarketContext);
67
68 // Initialize entity
69 ent->Init(aId,
70 aName,
71 hasDescription,
72 aDescription,
73 aMarketContext);
74}
75
76//=======================================================================
77//function : WriteStep
78//purpose :
79//=======================================================================
80
81void RWStepRepr_RWProductConcept::WriteStep (StepData_StepWriter& SW,
82 const Handle(StepRepr_ProductConcept) &ent) const
83{
84
85 // Own fields of ProductConcept
86
87 SW.Send (ent->Id());
88
89 SW.Send (ent->Name());
90
91 if ( ent->HasDescription() ) {
92 SW.Send (ent->Description());
93 }
94 else SW.SendUndef();
95
96 SW.Send (ent->MarketContext());
97}
98
99//=======================================================================
100//function : Share
101//purpose :
102//=======================================================================
103
104void RWStepRepr_RWProductConcept::Share (const Handle(StepRepr_ProductConcept) &ent,
105 Interface_EntityIterator& iter) const
106{
107
108 // Own fields of ProductConcept
109
110 iter.AddItem (ent->MarketContext());
111}