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