0028389: Data Exchange - Import of STEP Saved Views and Clipping Planes
[occt.git] / src / StepVisual / StepVisual_CameraModelD3MultiClippingIntersection.hxx
CommitLineData
0c63f2f8 1// Created on: 2016-11-14
2// Created by: Irina KRYLOVA
3// Copyright (c) 2016 OPEN CASCADE SAS
4//
5// This file is part of Open CASCADE Technology software library.
6//
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
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.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16#ifndef _StepVisual_CameraModelD3MultiClippingIntersection_HeaderFile
17#define _StepVisual_CameraModelD3MultiClippingIntersection_HeaderFile
18
19#include <Standard.hxx>
20#include <Standard_Type.hxx>
21
22#include <StepGeom_GeometricRepresentationItem.hxx>
23class StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect;
24class TCollection_HAsciiString;
25
26class StepGeom_GeometricRepresentationItem;
27DEFINE_STANDARD_HANDLE(StepVisual_CameraModelD3MultiClippingIntersection, StepGeom_GeometricRepresentationItem)
28
29class StepVisual_CameraModelD3MultiClippingIntersection : public StepGeom_GeometricRepresentationItem
30{
31public:
32
33
34 //! Returns a StepVisual_CameraModelD3MultiClippingIntersection
35 Standard_EXPORT StepVisual_CameraModelD3MultiClippingIntersection();
36
37 Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& theName,
38 const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect)& theShapeClipping);
39
40 Standard_EXPORT void SetShapeClipping(const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect)& theShapeClipping)
41 {
42 myShapeClipping = theShapeClipping;
43 }
44
45 Standard_EXPORT const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect) ShapeClipping()
46 {
47 return myShapeClipping;
48 }
49 DEFINE_STANDARD_RTTIEXT(StepVisual_CameraModelD3MultiClippingIntersection, StepGeom_GeometricRepresentationItem)
50
51private:
52
53Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect) myShapeClipping;
54};
55#endif // _StepVisual_CameraModelD3MultiClippingIntersection_HeaderFile