X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=idl%2FSMESH_Hypothesis.idl;h=69832b9ed37f854750ebba69bb4c9084b9e8c660;hp=6389d724f811644b8a132379295e39f9e92dcea9;hb=fd1707fca8c4592616eb66d3514983a2be408ce3;hpb=c3bf92bd87b770fd81631a3853f7f5bb1ac6a4e8;ds=sidebyside diff --git a/idl/SMESH_Hypothesis.idl b/idl/SMESH_Hypothesis.idl index 6389d724f..69832b9ed 100644 --- a/idl/SMESH_Hypothesis.idl +++ b/idl/SMESH_Hypothesis.idl @@ -31,6 +31,13 @@ module SMESH { + enum Dimension + { + DIM_1D, + DIM_2D, + DIM_3D + }; + interface SMESH_Hypothesis : SALOME::GenericObj { /*! @@ -47,6 +54,11 @@ module SMESH * Get the internal Id */ long GetId(); + + /*! + * Verify whether hypothesis supports given entity type + */ + boolean IsDimSupported( in Dimension type ); }; typedef sequence ListOfHypothesisName;