0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / StepShape / StepShape_DimensionalCharacteristicRepresentation.hxx
1 // Created on: 2000-04-18
2 // Created by: Andrey BETENEV
3 // Copyright (c) 2000-2014 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 _StepShape_DimensionalCharacteristicRepresentation_HeaderFile
17 #define _StepShape_DimensionalCharacteristicRepresentation_HeaderFile
18
19 #include <Standard.hxx>
20 #include <Standard_Type.hxx>
21
22 #include <StepShape_DimensionalCharacteristic.hxx>
23 #include <Standard_Transient.hxx>
24 class StepShape_ShapeDimensionRepresentation;
25 class StepShape_DimensionalCharacteristic;
26
27
28 class StepShape_DimensionalCharacteristicRepresentation;
29 DEFINE_STANDARD_HANDLE(StepShape_DimensionalCharacteristicRepresentation, Standard_Transient)
30
31 //! Representation of STEP entity DimensionalCharacteristicRepresentation
32 class StepShape_DimensionalCharacteristicRepresentation : public Standard_Transient
33 {
34
35 public:
36
37   
38   //! Empty constructor
39   Standard_EXPORT StepShape_DimensionalCharacteristicRepresentation();
40   
41   //! Initialize all fields (own and inherited)
42   Standard_EXPORT void Init (const StepShape_DimensionalCharacteristic& aDimension, const Handle(StepShape_ShapeDimensionRepresentation)& aRepresentation);
43   
44   //! Returns field Dimension
45   Standard_EXPORT StepShape_DimensionalCharacteristic Dimension() const;
46   
47   //! Set field Dimension
48   Standard_EXPORT void SetDimension (const StepShape_DimensionalCharacteristic& Dimension);
49   
50   //! Returns field Representation
51   Standard_EXPORT Handle(StepShape_ShapeDimensionRepresentation) Representation() const;
52   
53   //! Set field Representation
54   Standard_EXPORT void SetRepresentation (const Handle(StepShape_ShapeDimensionRepresentation)& Representation);
55
56
57
58
59   DEFINE_STANDARD_RTTIEXT(StepShape_DimensionalCharacteristicRepresentation,Standard_Transient)
60
61 protected:
62
63
64
65
66 private:
67
68
69   StepShape_DimensionalCharacteristic theDimension;
70   Handle(StepShape_ShapeDimensionRepresentation) theRepresentation;
71
72
73 };
74
75
76
77
78
79
80
81 #endif // _StepShape_DimensionalCharacteristicRepresentation_HeaderFile