Salome HOME
Merge with version on tag OCC-V2_1_0d
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_PreviewFilter.hxx
1 //  GEOM GEOMFiltersSelection : filter selector for the viewer
2 //
3 //  Copyright (C) 2004  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.salome-platform.org or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GEOM_PreviewFilter.hxx
25 //  Module : GEOM
26
27 #ifndef _GEOM_PreviewFilter_HeaderFile
28 #define _GEOM_PreviewFilter_HeaderFile
29
30 #ifndef _Handle_GEOM_PreviewFilter_HeaderFile
31 #include "Handle_GEOM_PreviewFilter.hxx"
32 #endif
33
34 #include "SALOME_InteractiveObject.hxx"
35 #include "SALOME_Filter.hxx"
36
37 // IDL Headers
38
39
40 // Open CASCADE Includes
41 #include <Standard.hxx>
42
43 class GEOM_PreviewFilter : public SALOME_Filter {
44
45 public:
46
47     inline void* operator new(size_t,void* anAddress) 
48       {
49         return anAddress;
50       }
51     inline void* operator new(size_t size) 
52       { 
53         return Standard::Allocate(size); 
54       }
55     inline void  operator delete(void *anAddress) 
56       { 
57         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
58       }
59  // Methods PUBLIC
60  // 
61 Standard_EXPORT GEOM_PreviewFilter();
62 Standard_EXPORT ~GEOM_PreviewFilter();
63
64 Standard_EXPORT virtual  Standard_Boolean IsOk(const Handle(SALOME_InteractiveObject)& anobj) const;
65
66
67  // Type management
68  //
69  Standard_EXPORT friend Handle_Standard_Type& GEOM_PreviewFilter_Type_();
70  Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
71  Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)&) const;
72
73 protected:
74
75  // Methods PROTECTED
76  // 
77
78
79  // Fields PROTECTED
80  //
81
82 private: 
83
84  // Methods PRIVATE
85  // 
86
87
88  // Fields PRIVATE
89  //
90
91
92 };
93
94
95
96
97
98 // other inline functions and methods (like "C++: function call" methods)
99 //
100
101
102 #endif