0026947: Data exchange can not be compiled without visualization anyomre
[occt.git] / src / StepDimTol / StepDimTol_DatumReference.hxx
1 // Created on: 2003-06-04
2 // Created by: Galina KULIKOVA
3 // Copyright (c) 2003-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 _StepDimTol_DatumReference_HeaderFile
17 #define _StepDimTol_DatumReference_HeaderFile
18
19 #include <Standard.hxx>
20 #include <Standard_Type.hxx>
21
22 #include <Standard_Integer.hxx>
23 #include <MMgt_TShared.hxx>
24 class StepDimTol_Datum;
25
26
27 class StepDimTol_DatumReference;
28 DEFINE_STANDARD_HANDLE(StepDimTol_DatumReference, MMgt_TShared)
29
30 //! Representation of STEP entity DatumReference
31 class StepDimTol_DatumReference : public MMgt_TShared
32 {
33
34 public:
35
36   
37   //! Empty constructor
38   Standard_EXPORT StepDimTol_DatumReference();
39   
40   //! Initialize all fields (own and inherited)
41   Standard_EXPORT void Init (const Standard_Integer thePrecedence, const Handle(StepDimTol_Datum)& theReferencedDatum);
42   
43   //! Returns field Precedence
44   Standard_EXPORT Standard_Integer Precedence() const;
45   
46   //! Set field Precedence
47   Standard_EXPORT void SetPrecedence (const Standard_Integer thePrecedence);
48   
49   //! Returns field ReferencedDatum
50   Standard_EXPORT Handle(StepDimTol_Datum) ReferencedDatum() const;
51   
52   //! Set field ReferencedDatum
53   Standard_EXPORT void SetReferencedDatum (const Handle(StepDimTol_Datum)& theReferencedDatum);
54
55
56
57
58   DEFINE_STANDARD_RTTIEXT(StepDimTol_DatumReference,MMgt_TShared)
59
60 protected:
61
62
63
64
65 private:
66
67
68   Standard_Integer myPrecedence;
69   Handle(StepDimTol_Datum) myReferencedDatum;
70
71
72 };
73
74
75
76
77
78
79
80 #endif // _StepDimTol_DatumReference_HeaderFile