Salome HOME
21a8b674aaf757ec150a17ce635386bdb3d8695f
[modules/gui.git] / src / LightApp / LightApp_OBFilter.h
1 #ifndef LIGHTAPP_OBFILTER_H
2 #define LIGHTAPP_OBFILTER_H
3
4 #include "LightApp.h"
5 #include "OB_Filter.h"
6
7 class LightApp_SelectionMgr;
8
9 class LIGHTAPP_EXPORT LightApp_OBFilter: public OB_Filter
10 {
11 public:
12   LightApp_OBFilter( LightApp_SelectionMgr* theSelMgr );
13   ~LightApp_OBFilter();
14
15   virtual bool isOk(  const SUIT_DataObject* ) const;
16
17 private:
18   LightApp_SelectionMgr* mySelMgr;
19
20 };
21
22 #endif