0027566: Configuration - define Handle_ as non-template class for compatibility with...
[occt.git] / src / StepDimTol / StepDimTol_DatumSystem.hxx
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
26 class StepDimTol_DatumSystem;
27 DEFINE_STANDARD_HANDLE(StepDimTol_DatumSystem, StepRepr_ShapeAspect)
28 //! Representation of STEP entity DatumSystem
29 class StepDimTol_DatumSystem : public StepRepr_ShapeAspect
30 {
31
32 public:
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   {
47     return myConstituents;
48   }
49   
50   //! Set field Constituents
51   inline void SetConstituents(const Handle(StepDimTol_HArray1OfDatumReferenceCompartment)& theConstituents)
52   {
53     myConstituents = theConstituents;
54   }
55   
56   //! Returns number of Constituents
57   inline Standard_Integer NbConstituents () const
58   {  
59     return (myConstituents.IsNull() ? 0 : myConstituents->Length());
60   }
61   
62   //! Returns Constituents with the given number
63   inline Handle(StepDimTol_DatumReferenceCompartment) ConstituentsValue(const Standard_Integer num) const
64   {  
65     return myConstituents->Value(num);
66   }
67   
68   //! Sets Constituents with given number
69   inline void ConstituentsValue(const Standard_Integer num, const Handle(StepDimTol_DatumReferenceCompartment)& theItem)
70   {  
71     myConstituents->SetValue (num, theItem);
72   }
73   
74   DEFINE_STANDARD_RTTIEXT(StepDimTol_DatumSystem,StepRepr_ShapeAspect)
75
76 private: 
77   Handle(StepDimTol_HArray1OfDatumReferenceCompartment) myConstituents;
78 };
79 #endif // _StepDimTol_DatumSystem_HeaderFile