0021014: EDF 1583 SMESH: Improvement of the Python Dump for the creation of groups

+  interface SMESH_GroupOnFilter : SMESH_GroupBase
This commit is contained in:
eap 2011-06-23 12:33:18 +00:00
parent db6959b647
commit 5e4bdb2eed

View File

@ -36,6 +36,7 @@
module SMESH module SMESH
{ {
interface Predicate; interface Predicate;
interface Filter;
/*! /*!
* SMESH_Group: base interface of group object * SMESH_Group: base interface of group object
@ -138,14 +139,24 @@ module SMESH
long RemoveByPredicate( in Predicate thePredicate ); long RemoveByPredicate( in Predicate thePredicate );
}; };
/*! /*!
* SMESH_Group: interface of group object linked to geometry * SMESH_GroupOnGeom: interface of group object linked to geometry
*/ */
interface SMESH_GroupOnGeom : SMESH_GroupBase interface SMESH_GroupOnGeom : SMESH_GroupBase
{ {
GEOM::GEOM_Object GetShape(); GEOM::GEOM_Object GetShape();
}; };
/*!
* SMESH_GroupOnFilter: interface of group object defined by filter
*/
interface SMESH_GroupOnFilter : SMESH_GroupBase
{
void SetFilter( in Filter theFilter);
Filter GetFilter();
};
}; };