Salome HOME
Correct some memory leaks
[modules/smesh.git] / src / SMDS / SMDSControl_MeshBoundary.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_MeshBoundary.hxx
24 //  Module : SMESH
25
26 #ifndef _SMDSControl_MeshBoundary_HeaderFile
27 #define _SMDSControl_MeshBoundary_HeaderFile
28
29 #ifndef _Standard_HeaderFile
30 #include <Standard.hxx>
31 #endif
32 #ifndef _Handle_SMDSControl_MeshBoundary_HeaderFile
33 #include "Handle_SMDSControl_MeshBoundary.hxx"
34 #endif
35
36 #ifndef _Handle_SMDS_Mesh_HeaderFile
37 #include "Handle_SMDS_Mesh.hxx"
38 #endif
39 #ifndef _MMgt_TShared_HeaderFile
40 #include <MMgt_TShared.hxx>
41 #endif
42 class SMDS_Mesh;
43
44
45 class SMDSControl_MeshBoundary : public MMgt_TShared {
46
47 public:
48
49     inline void* operator new(size_t,void* anAddress) 
50       {
51         return anAddress;
52       }
53     inline void* operator new(size_t size) 
54       { 
55         return Standard::Allocate(size); 
56       }
57     inline void  operator delete(void *anAddress) 
58       { 
59         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
60       }
61 //    inline void  operator delete(void *anAddress, size_t size) 
62 //      { 
63 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
64 //      }
65  // Methods PUBLIC
66  // 
67 Standard_EXPORT virtual  void Compute()  = 0;
68 Standard_EXPORT   Handle_SMDS_Mesh ResultMesh() ;
69 Standard_EXPORT ~SMDSControl_MeshBoundary();
70
71
72
73
74  // Type management
75  //
76  Standard_EXPORT friend Handle_Standard_Type& SMDSControl_MeshBoundary_Type_();
77  Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
78  Standard_EXPORT Standard_Boolean              IsKind(const Handle(Standard_Type)&) const;
79
80 protected:
81
82  // Methods PROTECTED
83  // 
84 Standard_EXPORT SMDSControl_MeshBoundary();
85 Standard_EXPORT SMDSControl_MeshBoundary(const Handle(SMDS_Mesh)& M);
86
87
88  // Fields PROTECTED
89  //
90 Handle_SMDS_Mesh myMesh;
91 Handle_SMDS_Mesh myBoundaryMesh;
92
93
94 private: 
95
96  // Methods PRIVATE
97  // 
98
99
100  // Fields PRIVATE
101  //
102
103
104 };
105
106
107
108
109
110 // other inline functions and methods (like "C++: function call" methods)
111 //
112
113
114 #endif