0029590: Coding - avoid usage of Standard_EXPORT attribute for inline methods
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_FuseFace.hxx
CommitLineData
42cf5bc1 1// Created on: 1998-07-28
2// Created by: LECLERE Florence
3// Copyright (c) 1998-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 _TopOpeBRepBuild_FuseFace_HeaderFile
18#define _TopOpeBRepBuild_FuseFace_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <TopTools_ListOfShape.hxx>
25#include <Standard_Boolean.hxx>
26#include <Standard_Integer.hxx>
27
28
29
30class TopOpeBRepBuild_FuseFace
31{
32public:
33
34 DEFINE_STANDARD_ALLOC
35
36
37 TopOpeBRepBuild_FuseFace();
38
39 TopOpeBRepBuild_FuseFace(const TopTools_ListOfShape& LIF, const TopTools_ListOfShape& LRF, const Standard_Integer CXM);
40
41 Standard_EXPORT void Init (const TopTools_ListOfShape& LIF, const TopTools_ListOfShape& LRF, const Standard_Integer CXM);
42
43 Standard_EXPORT void PerformFace();
44
45 Standard_EXPORT void PerformEdge();
46
47 Standard_EXPORT void ClearEdge();
48
49 Standard_EXPORT void ClearVertex();
50
51 Standard_Boolean IsDone() const;
52
53 Standard_Boolean IsModified() const;
54
0f57ab75 55 const TopTools_ListOfShape& LFuseFace() const;
42cf5bc1 56
0f57ab75 57 const TopTools_ListOfShape& LInternEdge() const;
42cf5bc1 58
0f57ab75 59 const TopTools_ListOfShape& LExternEdge() const;
42cf5bc1 60
0f57ab75 61 const TopTools_ListOfShape& LModifEdge() const;
42cf5bc1 62
0f57ab75 63 const TopTools_ListOfShape& LInternVertex() const;
42cf5bc1 64
0f57ab75 65 const TopTools_ListOfShape& LExternVertex() const;
42cf5bc1 66
0f57ab75 67 const TopTools_ListOfShape& LModifVertex() const;
42cf5bc1 68
69
70
71
72protected:
73
74
75
76 TopTools_ListOfShape myLIE;
77 TopTools_ListOfShape myLEE;
78 TopTools_ListOfShape myLME;
79 TopTools_ListOfShape myLIV;
80 TopTools_ListOfShape myLEV;
81 TopTools_ListOfShape myLMV;
82
83
84private:
85
86
87
88 TopTools_ListOfShape myLIF;
89 TopTools_ListOfShape myLRF;
90 TopTools_ListOfShape myLFF;
91 Standard_Boolean myInternal;
92 Standard_Boolean myModified;
93 Standard_Boolean myDone;
94
95
96};
97
98
99#include <TopOpeBRepBuild_FuseFace.lxx>
100
101
102
103
104
105#endif // _TopOpeBRepBuild_FuseFace_HeaderFile