0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / StepShape / StepShape_PlusMinusTolerance.hxx
CommitLineData
42cf5bc1 1// Created on: 2001-04-24
2// Created by: Christian CAILLET
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_PlusMinusTolerance_HeaderFile
17#define _StepShape_PlusMinusTolerance_HeaderFile
18
19#include <Standard.hxx>
20#include <Standard_Type.hxx>
21
22#include <StepShape_ToleranceMethodDefinition.hxx>
23#include <StepShape_DimensionalCharacteristic.hxx>
24#include <MMgt_TShared.hxx>
25class StepShape_ToleranceMethodDefinition;
26class StepShape_DimensionalCharacteristic;
27
28
29class StepShape_PlusMinusTolerance;
30DEFINE_STANDARD_HANDLE(StepShape_PlusMinusTolerance, MMgt_TShared)
31
32//! Added for Dimensional Tolerances
33class StepShape_PlusMinusTolerance : public MMgt_TShared
34{
35
36public:
37
38
39 Standard_EXPORT StepShape_PlusMinusTolerance();
40
41 Standard_EXPORT void Init (const StepShape_ToleranceMethodDefinition& range, const StepShape_DimensionalCharacteristic& toleranced_dimension);
42
43 Standard_EXPORT StepShape_ToleranceMethodDefinition Range() const;
44
45 Standard_EXPORT void SetRange (const StepShape_ToleranceMethodDefinition& range);
46
47 Standard_EXPORT StepShape_DimensionalCharacteristic TolerancedDimension() const;
48
49 Standard_EXPORT void SetTolerancedDimension (const StepShape_DimensionalCharacteristic& toleranced_dimension);
50
51
52
53
54 DEFINE_STANDARD_RTTI(StepShape_PlusMinusTolerance,MMgt_TShared)
55
56protected:
57
58
59
60
61private:
62
63
64 StepShape_ToleranceMethodDefinition theRange;
65 StepShape_DimensionalCharacteristic theTolerancedDimension;
66
67
68};
69
70
71
72
73
74
75
76#endif // _StepShape_PlusMinusTolerance_HeaderFile