Salome HOME
sources v1.2
[modules/smesh.git] / src / SMESHFiltersSelection / SMESH_TypeFilter.hxx
1 //  SMESH SMESHFiltersSelection : filter selector for viewer
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_TypeFilter.hxx
25 //  Module : SMESH
26
27 #ifndef _SMESH_TypeFilter_HeaderFile
28 #define _SMESH_TypeFilter_HeaderFile
29
30 #ifndef _Handle_SMESH_TypeFilter_HeaderFile
31 #include "Handle_SMESH_TypeFilter.hxx"
32 #endif
33
34 #include "SALOME_InteractiveObject.hxx"
35 #include "SALOME_Filter.hxx"
36 #include "SMESH_Type.h"
37
38 // Open CASCADE Includes
39 #include <Standard.hxx>
40
41 class SMESH_TypeFilter : public SALOME_Filter {
42
43 public:
44
45     inline void* operator new(size_t,void* anAddress) 
46       {
47         return anAddress;
48       }
49     inline void* operator new(size_t size) 
50       { 
51         return Standard::Allocate(size); 
52       }
53     inline void  operator delete(void *anAddress) 
54       { 
55         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
56       }
57 //    inline void  operator delete(void *anAddress, size_t size) 
58 //      { 
59 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
60 //      }
61  // Methods PUBLIC
62  // 
63 Standard_EXPORT SMESH_TypeFilter(MeshObjectType aType);
64 Standard_EXPORT virtual  Standard_Boolean IsOk(const Handle(SALOME_InteractiveObject)& anobj) const;
65 Standard_EXPORT ~SMESH_TypeFilter();
66
67
68
69
70  // Type management
71  //
72  Standard_EXPORT friend Handle_Standard_Type& SMESH_TypeFilter_Type_();
73  Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
74  Standard_EXPORT Standard_Boolean             IsKind(const Handle(Standard_Type)&) const;
75
76 protected:
77
78  // Methods PROTECTED
79  // 
80
81
82  // Fields PROTECTED
83  //
84 MeshObjectType myKind;
85
86 private: 
87
88  // Methods PRIVATE
89  // 
90
91
92  // Fields PRIVATE
93  //
94
95
96 };
97
98
99
100
101
102 // other inline functions and methods (like "C++: function call" methods)
103 //
104
105
106 #endif