0026912: CLang 3.6.2 compiler warning [-Winconsistent-missing-override]
[occt.git] / src / StepElement / StepElement_UniformSurfaceSection.hxx
CommitLineData
42cf5bc1 1// Created on: 2002-12-12
2// Created by: data exchange team
3// Copyright (c) 2002-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 _StepElement_UniformSurfaceSection_HeaderFile
17#define _StepElement_UniformSurfaceSection_HeaderFile
18
19#include <Standard.hxx>
20#include <Standard_Type.hxx>
21
22#include <Standard_Real.hxx>
23#include <StepElement_MeasureOrUnspecifiedValue.hxx>
24#include <StepElement_SurfaceSection.hxx>
25class StepElement_MeasureOrUnspecifiedValue;
26
27
28class StepElement_UniformSurfaceSection;
29DEFINE_STANDARD_HANDLE(StepElement_UniformSurfaceSection, StepElement_SurfaceSection)
30
31//! Representation of STEP entity UniformSurfaceSection
32class StepElement_UniformSurfaceSection : public StepElement_SurfaceSection
33{
34
35public:
36
37
38 //! Empty constructor
39 Standard_EXPORT StepElement_UniformSurfaceSection();
40
41 //! Initialize all fields (own and inherited)
42 Standard_EXPORT void Init (const StepElement_MeasureOrUnspecifiedValue& aSurfaceSection_Offset, const StepElement_MeasureOrUnspecifiedValue& aSurfaceSection_NonStructuralMass, const StepElement_MeasureOrUnspecifiedValue& aSurfaceSection_NonStructuralMassOffset, const Standard_Real aThickness, const StepElement_MeasureOrUnspecifiedValue& aBendingThickness, const StepElement_MeasureOrUnspecifiedValue& aShearThickness);
43
44 //! Returns field Thickness
45 Standard_EXPORT Standard_Real Thickness() const;
46
47 //! Set field Thickness
48 Standard_EXPORT void SetThickness (const Standard_Real Thickness);
49
50 //! Returns field BendingThickness
51 Standard_EXPORT StepElement_MeasureOrUnspecifiedValue BendingThickness() const;
52
53 //! Set field BendingThickness
54 Standard_EXPORT void SetBendingThickness (const StepElement_MeasureOrUnspecifiedValue& BendingThickness);
55
56 //! Returns field ShearThickness
57 Standard_EXPORT StepElement_MeasureOrUnspecifiedValue ShearThickness() const;
58
59 //! Set field ShearThickness
60 Standard_EXPORT void SetShearThickness (const StepElement_MeasureOrUnspecifiedValue& ShearThickness);
61
62
63
64
65 DEFINE_STANDARD_RTTI(StepElement_UniformSurfaceSection,StepElement_SurfaceSection)
66
67protected:
68
69
70
71
72private:
73
74
75 Standard_Real theThickness;
76 StepElement_MeasureOrUnspecifiedValue theBendingThickness;
77 StepElement_MeasureOrUnspecifiedValue theShearThickness;
78
79
80};
81
82
83
84
85
86
87
88#endif // _StepElement_UniformSurfaceSection_HeaderFile