Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_TypeFilter.hxx
1 //  GEOM GEOMGUI : Implementation of selection filters for GEOM module
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : GEOM_TypeFilter.hxx
25 //  Author : Sergey LITONIN
26 //  Module : GEOM
27
28 #ifndef _GEOM_TypeFilter_HeaderFile
29 #define _GEOM_TypeFilter_HeaderFile
30
31 #include "SALOME_TypeFilter.hxx"
32
33 #include <Standard_DefineHandle.hxx>
34
35 DEFINE_STANDARD_HANDLE( GEOM_TypeFilter, SALOME_TypeFilter )
36
37 /*
38   Class       : GEOM_TypeFilter
39   Description : Filter for verifyimg type of geom object ( GEOM_POINT, GEOM_MARKER  and so on )
40 */
41
42 class GEOM_TypeFilter : public SALOME_TypeFilter
43 {
44
45 public:
46
47                               GEOM_TypeFilter( const int  );
48
49
50   virtual                     ~GEOM_TypeFilter();
51   virtual                     Standard_Boolean IsOk( const Handle(SALOME_InteractiveObject)& ) const;
52
53   void                        SetType( const int );
54   int                         GetType() const;
55
56 private:
57
58   int                         myType;
59
60 public:
61   DEFINE_STANDARD_RTTI( GEOM_TypeFilter )
62 };
63
64 #endif
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90