0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / StepDimTol / StepDimTol_DatumSystem.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_DatumSystem_HeaderFile
17#define _StepDimTol_DatumSystem_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_HArray1OfDatumReferenceCompartment.hxx>
25
26class StepDimTol_DatumSystem;
27DEFINE_STANDARD_HANDLE(StepDimTol_DatumSystem, StepRepr_ShapeAspect)
28//! Representation of STEP entity DatumSystem
29class StepDimTol_DatumSystem : public StepRepr_ShapeAspect
30{
31
32public:
33
34 //! Empty constructor
35 Standard_EXPORT StepDimTol_DatumSystem();
36
37 //! Initialize all fields (own and inherited)
38 Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& theName,
39 const Handle(TCollection_HAsciiString)& theDescription,
40 const Handle(StepRepr_ProductDefinitionShape)& theOfShape,
41 const StepData_Logical theProductDefinitional,
42 const Handle(StepDimTol_HArray1OfDatumReferenceCompartment)& theConstituents);
43
44 //! Returns field Constituents
45 inline Handle(StepDimTol_HArray1OfDatumReferenceCompartment) Constituents()
46 {
2f220b97 47 return myConstituents;
28a73c1f 48 }
49
50 //! Set field Constituents
51 inline void SetConstituents(const Handle(StepDimTol_HArray1OfDatumReferenceCompartment)& theConstituents)
52 {
2f220b97 53 myConstituents = theConstituents;
28a73c1f 54 }
55
56 //! Returns number of Constituents
57 inline Standard_Integer NbConstituents () const
58 {
2f220b97 59 return (myConstituents.IsNull() ? 0 : myConstituents->Length());
28a73c1f 60 }
61
62 //! Returns Constituents with the given number
63 inline Handle(StepDimTol_DatumReferenceCompartment) ConstituentsValue(const Standard_Integer num) const
64 {
2f220b97 65 return myConstituents->Value(num);
28a73c1f 66 }
67
68 //! Sets Constituents with given number
69 inline void ConstituentsValue(const Standard_Integer num, const Handle(StepDimTol_DatumReferenceCompartment)& theItem)
70 {
2f220b97 71 myConstituents->SetValue (num, theItem);
28a73c1f 72 }
73
92efcf78 74 DEFINE_STANDARD_RTTIEXT(StepDimTol_DatumSystem,StepRepr_ShapeAspect)
28a73c1f 75
76private:
2f220b97 77 Handle(StepDimTol_HArray1OfDatumReferenceCompartment) myConstituents;
28a73c1f 78};
79#endif // _StepDimTol_DatumSystem_HeaderFile