Salome HOME
New item (FontItem), allowing to show information about font setting and to select...
[modules/gui.git] / src / SUIT / SUIT_SelectionFilter.h
1 #ifndef SUIT_SELECTIONFILTER_H
2 #define SUIT_SELECTIONFILTER_H
3
4 #include "SUIT.h"
5
6 class SUIT_DataOwner;
7
8 /*!Base class.*/
9 class SUIT_EXPORT SUIT_SelectionFilter
10 {
11 public:
12   SUIT_SelectionFilter();
13   ~SUIT_SelectionFilter();
14
15   virtual bool isOk( const SUIT_DataOwner* ) const = 0;
16 };
17
18 #endif