blob: 60b17af5be48e66975ebbc4f18f76910311b754d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _BRepCheck_Result_HeaderFile
#define _BRepCheck_Result_HeaderFile
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_DefineHandle_HeaderFile
#include <Standard_DefineHandle.hxx>
#endif
#ifndef _Handle_BRepCheck_Result_HeaderFile
#include <Handle_BRepCheck_Result.hxx>
#endif
#ifndef _TopoDS_Shape_HeaderFile
#include <TopoDS_Shape.hxx>
#endif
#ifndef _Standard_Boolean_HeaderFile
#include <Standard_Boolean.hxx>
#endif
#ifndef _BRepCheck_DataMapOfShapeListOfStatus_HeaderFile
#include <BRepCheck_DataMapOfShapeListOfStatus.hxx>
#endif
#ifndef _BRepCheck_DataMapIteratorOfDataMapOfShapeListOfStatus_HeaderFile
#include <BRepCheck_DataMapIteratorOfDataMapOfShapeListOfStatus.hxx>
#endif
#ifndef _MMgt_TShared_HeaderFile
#include <MMgt_TShared.hxx>
#endif
class Standard_NoSuchObject;
class TopoDS_Shape;
class BRepCheck_ListOfStatus;
class BRepCheck_Result : public MMgt_TShared {
public:
Standard_EXPORT void Init(const TopoDS_Shape& S) ;
Standard_EXPORT virtual void InContext(const TopoDS_Shape& ContextShape) = 0;
Standard_EXPORT virtual void Minimum() = 0;
Standard_EXPORT virtual void Blind() = 0;
Standard_EXPORT void SetFailStatus(const TopoDS_Shape& S) ;
const BRepCheck_ListOfStatus& Status() const;
Standard_Boolean IsMinimum() const;
Standard_Boolean IsBlind() const;
//! If not already done, performs the InContext <br>
//! control and returns the list of status. <br>
Standard_EXPORT const BRepCheck_ListOfStatus& StatusOnShape(const TopoDS_Shape& S) ;
Standard_EXPORT void InitContextIterator() ;
Standard_Boolean MoreShapeInContext() const;
const TopoDS_Shape& ContextualShape() const;
const BRepCheck_ListOfStatus& StatusOnShape() const;
Standard_EXPORT void NextShapeInContext() ;
DEFINE_STANDARD_RTTI(BRepCheck_Result)
protected:
Standard_EXPORT BRepCheck_Result();
TopoDS_Shape myShape;
Standard_Boolean myMin;
Standard_Boolean myBlind;
BRepCheck_DataMapOfShapeListOfStatus myMap;
private:
BRepCheck_DataMapIteratorOfDataMapOfShapeListOfStatus myIter;
};
#include <BRepCheck_Result.lxx>
// other Inline functions and methods (like "C++: function call" methods)
#endif
|