Salome HOME
This commit was generated by cvs2git to create branch 'PAL_OCC'.
[modules/smesh.git] / src / SMDS / SMDSControl_BoundaryEdges.hxx
1 //  SMESH SMDS : implementaion of Salome mesh data structure
2 //
3 //  Copyright (C) 2003  OPEN CASCADE
4 // 
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 //  See http://www.opencascade.org or email : webmaster@opencascade.org 
20 //
21 //
22 //
23 //  File   : SMDSControl_BoundaryEdges.hxx
24 //  Module : SMESH
25
26 #ifndef _SMDSControl_BoundaryEdges_HeaderFile
27 #define _SMDSControl_BoundaryEdges_HeaderFile
28
29 #ifndef _Standard_HeaderFile
30 #include <Standard.hxx>
31 #endif
32 #ifndef _Handle_SMDSControl_BoundaryEdges_HeaderFile
33 #include "Handle_SMDSControl_BoundaryEdges.hxx"
34 #endif
35
36 #ifndef _SMDS_MapOfMeshElement_HeaderFile
37 #include "SMDS_MapOfMeshElement.hxx"
38 #endif
39 #ifndef _SMDSControl_MeshBoundary_HeaderFile
40 #include "SMDSControl_MeshBoundary.hxx"
41 #endif
42 #ifndef _Handle_SMDS_Mesh_HeaderFile
43 #include "Handle_SMDS_Mesh.hxx"
44 #endif
45 class SMDS_Mesh;
46
47
48 class SMDSControl_BoundaryEdges : public SMDSControl_MeshBoundary {
49
50 public:
51
52     inline void* operator new(size_t,void* anAddress) 
53       {
54         return anAddress;
55       }
56     inline void* operator new(size_t size) 
57       { 
58         return Standard::Allocate(size); 
59       }
60     inline void  operator delete(void *anAddress) 
61       { 
62         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
63       }
64 //    inline void  operator delete(void *anAddress, size_t size) 
65 //      { 
66 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
67 //      }
68  // Methods PUBLIC
69  // 
70 Standard_EXPORT SMDSControl_BoundaryEdges(const Handle(SMDS_Mesh)& M);
71 Standard_EXPORT virtual  void Compute() ;
72 Standard_EXPORT ~SMDSControl_BoundaryEdges();
73
74
75
76
77  // Type management
78  //
79  Standard_EXPORT friend Handle_Standard_Type& SMDSControl_BoundaryEdges_Type_();
80  Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
81  Standard_EXPORT Standard_Boolean              IsKind(const Handle(Standard_Type)&) const;
82
83 protected:
84
85  // Methods PROTECTED
86  // 
87
88
89  // Fields PROTECTED
90  //
91
92
93 private: 
94
95  // Methods PRIVATE
96  // 
97
98
99  // Fields PRIVATE
100  //
101 SMDS_MapOfMeshElement myBoundaryEdges;
102
103
104 };
105
106
107
108
109
110 // other inline functions and methods (like "C++: function call" methods)
111 //
112
113
114 #endif