0027047: STEP -- eliminate useless polymorhic methods Init()
[occt.git] / src / StepDimTol / StepDimTol_DatumReference.hxx
CommitLineData
42cf5bc1 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>
24class StepDimTol_Datum;
25
26
27class StepDimTol_DatumReference;
28DEFINE_STANDARD_HANDLE(StepDimTol_DatumReference, MMgt_TShared)
29
30//! Representation of STEP entity DatumReference
31class StepDimTol_DatumReference : public MMgt_TShared
32{
33
34public:
35
36
37 //! Empty constructor
38 Standard_EXPORT StepDimTol_DatumReference();
39
40 //! Initialize all fields (own and inherited)
2f220b97 41 Standard_EXPORT void Init (const Standard_Integer thePrecedence, const Handle(StepDimTol_Datum)& theReferencedDatum);
42cf5bc1 42
43 //! Returns field Precedence
44 Standard_EXPORT Standard_Integer Precedence() const;
45
46 //! Set field Precedence
2f220b97 47 Standard_EXPORT void SetPrecedence (const Standard_Integer thePrecedence);
42cf5bc1 48
49 //! Returns field ReferencedDatum
50 Standard_EXPORT Handle(StepDimTol_Datum) ReferencedDatum() const;
51
52 //! Set field ReferencedDatum
2f220b97 53 Standard_EXPORT void SetReferencedDatum (const Handle(StepDimTol_Datum)& theReferencedDatum);
42cf5bc1 54
55
56
57
92efcf78 58 DEFINE_STANDARD_RTTIEXT(StepDimTol_DatumReference,MMgt_TShared)
42cf5bc1 59
60protected:
61
62
63
64
65private:
66
67
2f220b97 68 Standard_Integer myPrecedence;
69 Handle(StepDimTol_Datum) myReferencedDatum;
42cf5bc1 70
71
72};
73
74
75
76
77
78
79
80#endif // _StepDimTol_DatumReference_HeaderFile