0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
[occt.git] / src / StepShape / StepShape_LimitsAndFits.hxx
CommitLineData
42cf5bc1 1// Created on: 2001-04-24
2// Created by: Atelier IED
3// Copyright (c) 2001-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 _StepShape_LimitsAndFits_HeaderFile
17#define _StepShape_LimitsAndFits_HeaderFile
18
19#include <Standard.hxx>
20#include <Standard_Type.hxx>
21
22#include <MMgt_TShared.hxx>
23class TCollection_HAsciiString;
24
25
26class StepShape_LimitsAndFits;
27DEFINE_STANDARD_HANDLE(StepShape_LimitsAndFits, MMgt_TShared)
28
29//! Added for Dimensional Tolerances
30class StepShape_LimitsAndFits : public MMgt_TShared
31{
32
33public:
34
35
36 Standard_EXPORT StepShape_LimitsAndFits();
37
38 Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& form_variance, const Handle(TCollection_HAsciiString)& zone_variance, const Handle(TCollection_HAsciiString)& grade, const Handle(TCollection_HAsciiString)& source);
39
40 Standard_EXPORT Handle(TCollection_HAsciiString) FormVariance() const;
41
42 Standard_EXPORT void SetFormVariance (const Handle(TCollection_HAsciiString)& form_variance);
43
44 Standard_EXPORT Handle(TCollection_HAsciiString) ZoneVariance() const;
45
46 Standard_EXPORT void SetZoneVariance (const Handle(TCollection_HAsciiString)& zone_variance);
47
48 Standard_EXPORT Handle(TCollection_HAsciiString) Grade() const;
49
50 Standard_EXPORT void SetGrade (const Handle(TCollection_HAsciiString)& grade);
51
52 Standard_EXPORT Handle(TCollection_HAsciiString) Source() const;
53
54 Standard_EXPORT void SetSource (const Handle(TCollection_HAsciiString)& source);
55
56
57
58
92efcf78 59 DEFINE_STANDARD_RTTIEXT(StepShape_LimitsAndFits,MMgt_TShared)
42cf5bc1 60
61protected:
62
63
64
65
66private:
67
68
69 Handle(TCollection_HAsciiString) theFormVariance;
70 Handle(TCollection_HAsciiString) theZoneVariance;
71 Handle(TCollection_HAsciiString) theGrade;
72 Handle(TCollection_HAsciiString) theSource;
73
74
75};
76
77
78
79
80
81
82
83#endif // _StepShape_LimitsAndFits_HeaderFile