Salome HOME
Merge branch 'Dev_1.1.0' of newgeom:newgeom into Dev_1.1.0
[modules/shaper.git] / src / ModuleBase / ModuleBase_Filter.h
index 7b1f63d1e91c66ad02fb295675011988ed6f5994..e7a1a639bf486472b99f4dca491f80599c9084e7 100644 (file)
@@ -14,6 +14,7 @@
 #include <list>
 
 /**
+ * \ingroup GUI
  * This object is assigned by the name
  * in the XML file to the specific attribute or to the whole feature.
  * If isOK method of the filter returns "false", it is signalized in user interface
@@ -24,6 +25,7 @@
 class ModuleBase_Filter
 {
 public:
+  /// Constructor
   MODULEBASE_EXPORT ModuleBase_Filter() {}
 
   /**
@@ -45,7 +47,8 @@ protected:
   virtual void createFilter() = 0;
 
 protected:
-  Handle(SelectMgr_Filter) myFilter; // current instance of the OCC selection filter
+  /// current instance of the OCC selection filter
+  Handle(SelectMgr_Filter) myFilter; 
 };
 
 #endif //ModuleBase_Filter