X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESH_I%2FSMESH_2D_Algo_i.cxx;h=00744eea49a7f4d1a649eec02694f3f39d379194;hb=f7a79421091ec31b578a24054f83f42babba0333;hp=833be2ac9451880abd7d1e3839831ddf3554e3f0;hpb=c3bf92bd87b770fd81631a3853f7f5bb1ac6a4e8;p=modules%2Fsmesh.git diff --git a/src/SMESH_I/SMESH_2D_Algo_i.cxx b/src/SMESH_I/SMESH_2D_Algo_i.cxx index 833be2ac9..00744eea4 100644 --- a/src/SMESH_I/SMESH_2D_Algo_i.cxx +++ b/src/SMESH_I/SMESH_2D_Algo_i.cxx @@ -59,3 +59,17 @@ SMESH_2D_Algo_i::~SMESH_2D_Algo_i() { MESSAGE( "SMESH_2D_Algo_i::~SMESH_2D_Algo_i" ); } + +//================================================================================ +/*! + * \brief Verify whether algorithm supports given entity type + * \param type - dimension (see SMESH::Dimension enumeration) + * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise + * + * Verify whether algorithm supports given entity type (see SMESH::Dimension enumeration) + */ +//================================================================================ +CORBA::Boolean SMESH_2D_Algo_i::IsDimSupported( SMESH::Dimension type ) +{ + return type == SMESH::DIM_2D; +}