Salome HOME
Fix for bug PAL10314: Hang up on import 'essaiminimail.med' in SMESH
[modules/smesh.git] / idl / SMESH_Group.idl
index a39c3445d00f2e876350a289bca476abcc79ab6f..37657674bf4f41da09810991f347e283cfa83f62 100644 (file)
@@ -33,6 +33,8 @@
 
 module SMESH
 {
+  interface Predicate;
+
   /*!
    * SMESH_Group: base interface of group object
    */
@@ -98,11 +100,13 @@ module SMESH
      * Adds elements to the group
      */
     long Add( in long_array elem_ids );
+    long AddByPredicate( in Predicate thePredicate );
 
     /*!
      * Removes elements from the group
      */
     long Remove( in long_array elem_ids );
+    long RemoveByPredicate( in Predicate thePredicate );
 
   };
   /*!