0023258: Missing parenthesis
[occt.git] / src / RWStepVisual / RWStepVisual_RWCameraUsage.cxx
1 // Copyright (c) 1999-2012 OPEN CASCADE SAS
2 //
3 // The content of this file is subject to the Open CASCADE Technology Public
4 // License Version 6.5 (the "License"). You may not use the content of this file
5 // except in compliance with the License. Please obtain a copy of the License
6 // at http://www.opencascade.org and read it completely before using this file.
7 //
8 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
9 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
10 //
11 // The Original Code and all software distributed under the License is
12 // distributed on an "AS IS" basis, without warranty of any kind, and the
13 // Initial Developer hereby disclaims all such warranties, including without
14 // limitation, any warranties of merchantability, fitness for a particular
15 // purpose or non-infringement. Please see the License for the specific terms
16 // and conditions governing the rights and limitations under the License.
17
18
19 #include <RWStepVisual_RWCameraUsage.ixx>
20 #include <StepRepr_RepresentationItem.hxx>
21 #include <StepRepr_Representation.hxx>
22
23
24 #include <Interface_EntityIterator.hxx>
25
26
27 #include <StepVisual_CameraUsage.hxx>
28
29
30 RWStepVisual_RWCameraUsage::RWStepVisual_RWCameraUsage () {}
31
32 void RWStepVisual_RWCameraUsage::ReadStep
33         (const Handle(StepData_StepReaderData)& data,
34          const Standard_Integer num,
35          Handle(Interface_Check)& ach,
36          const Handle(StepVisual_CameraUsage)& ent) const
37 {
38
39
40         // --- Number of Parameter Control ---
41
42         if (!data->CheckNbParams(num,2,ach,"camera_usage")) return;
43
44         // --- inherited field : mappingOrigin ---
45
46         Handle(StepRepr_RepresentationItem) aMappingOrigin;
47         //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
48         data->ReadEntity(num, 1,"mapping_origin", ach, STANDARD_TYPE(StepRepr_RepresentationItem), aMappingOrigin);
49
50         // --- inherited field : mappedRepresentation ---
51
52         Handle(StepRepr_Representation) aMappedRepresentation;
53         //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
54         data->ReadEntity(num, 2,"mapped_representation", ach, STANDARD_TYPE(StepRepr_Representation), aMappedRepresentation);
55
56         //--- Initialisation of the read entity ---
57
58
59         ent->Init(aMappingOrigin, aMappedRepresentation);
60 }
61
62
63 void RWStepVisual_RWCameraUsage::WriteStep
64         (StepData_StepWriter& SW,
65          const Handle(StepVisual_CameraUsage)& ent) const
66 {
67
68         // --- inherited field mappingOrigin ---
69
70         SW.Send(ent->MappingOrigin());
71
72         // --- inherited field mappedRepresentation ---
73
74         SW.Send(ent->MappedRepresentation());
75 }
76
77
78 void RWStepVisual_RWCameraUsage::Share(const Handle(StepVisual_CameraUsage)& ent, Interface_EntityIterator& iter) const
79 {
80
81         iter.GetOneItem(ent->MappingOrigin());
82
83
84         iter.GetOneItem(ent->MappedRepresentation());
85 }
86