0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / StepDimTol / StepDimTol_GeneralDatumReference.hxx
CommitLineData
28a73c1f 1// Created on: 2015-07-16
2// Created by: Irina KRYLOVA
3// Copyright (c) 2015 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 _StepDimTol_GeneralDatumReference_HeaderFile
17#define _StepDimTol_GeneralDatumReference_HeaderFile
18
19#include <Standard.hxx>
20#include <Standard_Type.hxx>
21
22#include <Standard_Integer.hxx>
23#include <StepRepr_ShapeAspect.hxx>
24#include <StepDimTol_DatumOrCommonDatum.hxx>
25#include <StepDimTol_HArray1OfDatumReferenceModifier.hxx>
26
27class StepDimTol_GeneralDatumReference;
28DEFINE_STANDARD_HANDLE(StepDimTol_GeneralDatumReference, StepRepr_ShapeAspect)
29//! Representation of STEP entity GeneralDatumReference
30class StepDimTol_GeneralDatumReference : public StepRepr_ShapeAspect
31{
32
33public:
34
35 //! Empty constructor
36 Standard_EXPORT StepDimTol_GeneralDatumReference();
37
38 //! Initialize all fields (own and inherited)
39 Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& theName,
40 const Handle(TCollection_HAsciiString)& theDescription,
41 const Handle(StepRepr_ProductDefinitionShape)& theOfShape,
42 const StepData_Logical theProductDefinitional,
43 const StepDimTol_DatumOrCommonDatum& theBase,
2f220b97 44 const Standard_Boolean theHasModifiers,
28a73c1f 45 const Handle(StepDimTol_HArray1OfDatumReferenceModifier)& theModifiers);
46
47 //! Returns field Base
48 inline StepDimTol_DatumOrCommonDatum Base()
49 {
2f220b97 50 return myBase;
28a73c1f 51 }
52
53 //! Set field Base
54 inline void SetBase(const StepDimTol_DatumOrCommonDatum& theBase)
55 {
2f220b97 56 myBase = theBase;
28a73c1f 57 }
58
59 //! Indicates is field Modifiers exist
60 inline Standard_Boolean HasModifiers() const
61 {
6595eee7 62 return !(myModifiers.IsNull() || myModifiers->Length() == 0);
28a73c1f 63 }
64
65 //! Returns field Modifiers
66 inline Handle(StepDimTol_HArray1OfDatumReferenceModifier) Modifiers()
67 {
2f220b97 68 return myModifiers;
28a73c1f 69 }
70
71 //! Set field Modifiers
72 inline void SetModifiers(const Handle(StepDimTol_HArray1OfDatumReferenceModifier)& theModifiers)
73 {
2f220b97 74 myModifiers = theModifiers;
28a73c1f 75 }
76
77 //! Returns number of Modifiers
78 inline Standard_Integer NbModifiers () const
79 {
2f220b97 80 return (myModifiers.IsNull() ? 0 : myModifiers->Length());
28a73c1f 81 }
82
83 //! Returns Modifiers with the given number
2f220b97 84 inline StepDimTol_DatumReferenceModifier ModifiersValue(const Standard_Integer theNum) const
28a73c1f 85 {
2f220b97 86 return myModifiers->Value(theNum);
28a73c1f 87 }
88
89 //! Sets Modifiers with given number
2f220b97 90 inline void ModifiersValue(const Standard_Integer theNum, const StepDimTol_DatumReferenceModifier& theItem)
28a73c1f 91 {
2f220b97 92 myModifiers->SetValue (theNum, theItem);
28a73c1f 93 }
94
92efcf78 95 DEFINE_STANDARD_RTTIEXT(StepDimTol_GeneralDatumReference,StepRepr_ShapeAspect)
28a73c1f 96
97private:
2f220b97 98 StepDimTol_DatumOrCommonDatum myBase;
99 Handle(StepDimTol_HArray1OfDatumReferenceModifier) myModifiers;
28a73c1f 100};
101#endif // _StepDimTol_GeneralDatumReference_HeaderFile