0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / RWStepBasic / RWStepBasic_RWOrganization.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
7fd59977 14//gka 05.03.99 S4134 upgrade from CD to DIS
7fd59977 15
42cf5bc1 16#include <Interface_Check.hxx>
17#include <RWStepBasic_RWOrganization.hxx>
18#include <StepBasic_Organization.hxx>
19#include <StepData_StepReaderData.hxx>
20#include <StepData_StepWriter.hxx>
7fd59977 21
22RWStepBasic_RWOrganization::RWStepBasic_RWOrganization () {}
23
24void RWStepBasic_RWOrganization::ReadStep
25 (const Handle(StepData_StepReaderData)& data,
26 const Standard_Integer num,
27 Handle(Interface_Check)& ach,
28 const Handle(StepBasic_Organization)& ent) const
29{
30
31
32 // --- Number of Parameter Control ---
33
34 if (!data->CheckNbParams(num,3,ach,"organization")) return;
35
36 // --- own field : id ---
37
38 Handle(TCollection_HAsciiString) aId;
39 Standard_Boolean hasAid = Standard_True;
40 if (data->IsParamDefined(num,1)) {
41 //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
42 data->ReadString (num,1,"id",ach,aId);
43 }
44 else {
45 hasAid = Standard_False;
46 aId.Nullify();
47 }
48
49 // --- own field : name ---
50
51 Handle(TCollection_HAsciiString) aName;
52 //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
53 data->ReadString (num,2,"name",ach,aName);
54
55 // --- own field : description ---
56
57 Handle(TCollection_HAsciiString) aDescription;
58 if (data->IsParamDefined (num,3)) { //gka 05.03.99 S4134 upgrade from CD to DIS
59 //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
60 data->ReadString (num,3,"description",ach,aDescription);
61 }
62 //--- Initialisation of the read entity ---
63
64
65 ent->Init(hasAid, aId, aName, aDescription);
66}
67
68
69void RWStepBasic_RWOrganization::WriteStep
70 (StepData_StepWriter& SW,
71 const Handle(StepBasic_Organization)& ent) const
72{
73
74 // --- own field : id ---
75
76 Standard_Boolean hasAid = ent->HasId();
77 if (hasAid) {
78 SW.Send(ent->Id());
79 }
80 else {
81 SW.SendUndef();
82 }
83
84 // --- own field : name ---
85
86 SW.Send(ent->Name());
87
88 // --- own field : description ---
89
90 SW.Send(ent->Description());
91}