0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / TopBas / TopBas_TestInterference.hxx
1 // Created on: 1992-08-13
2 // Created by: Remi LEQUETTE
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _TopBas_TestInterference_HeaderFile
18 #define _TopBas_TestInterference_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <Standard_Real.hxx>
25 #include <Standard_Integer.hxx>
26 #include <TopAbs_Orientation.hxx>
27
28
29
30 class TopBas_TestInterference 
31 {
32 public:
33
34   DEFINE_STANDARD_ALLOC
35
36   
37   Standard_EXPORT TopBas_TestInterference();
38   
39   Standard_EXPORT TopBas_TestInterference(const Standard_Real& Inters, const Standard_Integer& Bound, const TopAbs_Orientation Orient, const TopAbs_Orientation Trans, const TopAbs_Orientation BTrans);
40   
41     void Intersection (const Standard_Real& I);
42   
43     void Boundary (const Standard_Integer& B);
44   
45     void Orientation (const TopAbs_Orientation O);
46   
47     void Transition (const TopAbs_Orientation Tr);
48   
49     void BoundaryTransition (const TopAbs_Orientation BTr);
50   
51     const Standard_Real& Intersection() const;
52   
53     Standard_Real& ChangeIntersection();
54   
55     const Standard_Integer& Boundary() const;
56   
57     Standard_Integer& ChangeBoundary();
58   
59     TopAbs_Orientation Orientation() const;
60   
61     TopAbs_Orientation Transition() const;
62   
63     TopAbs_Orientation BoundaryTransition() const;
64
65
66
67
68 protected:
69
70
71
72
73
74 private:
75
76
77
78   Standard_Real myIntersection;
79   Standard_Integer myBoundary;
80   TopAbs_Orientation myOrientation;
81   TopAbs_Orientation myTransition;
82   TopAbs_Orientation myBTransition;
83
84
85 };
86
87 #define TheSubShape Standard_Real
88 #define TheSubShape_hxx <Standard_Real.hxx>
89 #define TheShape Standard_Integer
90 #define TheShape_hxx <Standard_Integer.hxx>
91 #define TopBas_Interference TopBas_TestInterference
92 #define TopBas_Interference_hxx <TopBas_TestInterference.hxx>
93
94 #include <TopBas_Interference.lxx>
95
96 #undef TheSubShape
97 #undef TheSubShape_hxx
98 #undef TheShape
99 #undef TheShape_hxx
100 #undef TopBas_Interference
101 #undef TopBas_Interference_hxx
102
103
104
105
106 #endif // _TopBas_TestInterference_HeaderFile