0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[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
0c63f2f8 26DEFINE_STANDARD_HANDLE(StepVisual_CameraModelD3MultiClippingIntersection, StepGeom_GeometricRepresentationItem)
27
28class StepVisual_CameraModelD3MultiClippingIntersection : public StepGeom_GeometricRepresentationItem
29{
30public:
31
32
33 //! Returns a StepVisual_CameraModelD3MultiClippingIntersection
34 Standard_EXPORT StepVisual_CameraModelD3MultiClippingIntersection();
35
36 Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& theName,
37 const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect)& theShapeClipping);
38
0f57ab75 39 void SetShapeClipping(const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect)& theShapeClipping)
0c63f2f8 40 {
41 myShapeClipping = theShapeClipping;
42 }
43
0f57ab75 44 const Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect) ShapeClipping()
0c63f2f8 45 {
46 return myShapeClipping;
47 }
48 DEFINE_STANDARD_RTTIEXT(StepVisual_CameraModelD3MultiClippingIntersection, StepGeom_GeometricRepresentationItem)
49
50private:
51
52Handle(StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect) myShapeClipping;
53};
54#endif // _StepVisual_CameraModelD3MultiClippingIntersection_HeaderFile