]>
Commit | Line | Data |
---|---|---|
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 | // |
973c2be1 | 5 | // This library is free software; you can redistribute it and / or modify it |
6 | // under the terms of the GNU Lesser General Public version 2.1 as published | |
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. | |
7fd59977 | 13 | |
14 | #include <RWStepVisual_RWPresentedItemRepresentation.ixx> | |
15 | #include <StepVisual_PresentationRepresentationSelect.hxx> | |
16 | #include <StepVisual_PresentedItem.hxx> | |
17 | ||
18 | ||
19 | #include <Interface_EntityIterator.hxx> | |
20 | ||
21 | ||
22 | #include <StepVisual_PresentedItemRepresentation.hxx> | |
23 | ||
24 | ||
25 | RWStepVisual_RWPresentedItemRepresentation::RWStepVisual_RWPresentedItemRepresentation () {} | |
26 | ||
27 | void RWStepVisual_RWPresentedItemRepresentation::ReadStep | |
28 | (const Handle(StepData_StepReaderData)& data, | |
29 | const Standard_Integer num, | |
30 | Handle(Interface_Check)& ach, | |
31 | const Handle(StepVisual_PresentedItemRepresentation)& ent) const | |
32 | { | |
33 | ||
34 | ||
35 | // --- Number of Parameter Control --- | |
36 | ||
37 | if (!data->CheckNbParams(num,2,ach,"presented_item_representation")) return; | |
38 | ||
39 | // --- own fields | |
40 | ||
41 | StepVisual_PresentationRepresentationSelect prs; | |
42 | //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed | |
43 | data->ReadEntity(num,1,"date_time", ach, prs); | |
44 | ||
45 | Handle(StepVisual_PresentedItem) pi; | |
46 | //szv#4:S4163:12Mar99 `stat1 =` not needed | |
47 | data->ReadEntity (num,2,"dated_approval",ach, STANDARD_TYPE(StepVisual_PresentedItem), pi); | |
48 | ||
49 | //--- Initialisation of the read entity --- | |
50 | ||
51 | ||
52 | ent->Init(prs,pi); | |
53 | } | |
54 | ||
55 | ||
56 | void RWStepVisual_RWPresentedItemRepresentation::WriteStep | |
57 | (StepData_StepWriter& SW, | |
58 | const Handle(StepVisual_PresentedItemRepresentation)& ent) const | |
59 | { | |
60 | ||
61 | // --- own field : dimensions --- | |
62 | ||
63 | SW.Send(ent->Presentation().Value()); | |
64 | SW.Send(ent->Item()); | |
65 | } | |
66 | ||
67 | ||
68 | void RWStepVisual_RWPresentedItemRepresentation::Share(const Handle(StepVisual_PresentedItemRepresentation)& ent, Interface_EntityIterator& iter) const | |
69 | { | |
70 | ||
71 | iter.GetOneItem(ent->Presentation().Value()); | |
72 | iter.GetOneItem(ent->Item()); | |
73 | } |