Salome HOME
f21592470d305db5019599b8e0962db10a98846b
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_FaceFilter.h
1 #ifndef GEOM_FACEFILTER_H
2 #define GEOM_FACEFILTER_H
3
4 #include "GEOM_SelectionFilter.h"
5
6 class Standard_EXPORT GEOM_FaceFilter : public GEOM_SelectionFilter
7 {
8 public:
9   GEOM_FaceFilter( SalomeApp_Study* study, const int kind );
10   ~GEOM_FaceFilter();
11
12 protected:
13   bool                  isShapeOk( const TopoDS_Shape& ) const;
14
15 private:
16   int                   myKind;
17
18 };
19
20 #endif