From: rnv Date: Wed, 24 Sep 2008 11:58:56 +0000 (+0000) Subject: Implementation of the issue 19950. X-Git-Tag: RELIQUAT_4x_25102008~25 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=98dad5e3ccfc984c98265b942d1b6d9bbefe94e4;p=modules%2Fsmesh.git Implementation of the issue 19950. --- diff --git a/src/SMESH_I/SMESH_MEDMesh_i.cxx b/src/SMESH_I/SMESH_MEDMesh_i.cxx index b7f15cf17..33a313954 100644 --- a/src/SMESH_I/SMESH_MEDMesh_i.cxx +++ b/src/SMESH_I/SMESH_MEDMesh_i.cxx @@ -727,6 +727,23 @@ SMESH_MEDMesh_i::getBoundaryElements(SALOME_MED::medEntityMesh entity) return NULL; } +//============================================================================= +/*! + * CORBA: Method return a reference on a support define on all the element of + * an entity. + */ +//============================================================================= +SALOME_MED::SUPPORT_ptr +SMESH_MEDMesh_i::getSupportOnAll(SALOME_MED::medEntityMesh entity) + throw (SALOME::SALOME_Exception) +{ + MESSAGE("!!!! NOT YET IMPLEMENTED !!!!!"); + + THROW_SALOME_CORBA_EXCEPTION("Unimplemented Method", SALOME::BAD_PARAM); + + return NULL; +} + //============================================================================= /*! * CORBA: Returns references for the support of the skin of the support diff --git a/src/SMESH_I/SMESH_MEDMesh_i.hxx b/src/SMESH_I/SMESH_MEDMesh_i.hxx index 05fe0727d..ef4526cc6 100644 --- a/src/SMESH_I/SMESH_MEDMesh_i.hxx +++ b/src/SMESH_I/SMESH_MEDMesh_i.hxx @@ -194,6 +194,10 @@ public: SALOME_MED::SUPPORT_ptr getBoundaryElements(SALOME_MED::medEntityMesh entity) throw (SALOME::SALOME_Exception); + + SALOME_MED::SUPPORT_ptr + getSupportOnAll(SALOME_MED::medEntityMesh entity) + throw (SALOME::SALOME_Exception); SALOME_MED::SUPPORT_ptr getSkin(SALOME_MED::SUPPORT_ptr mySupport3D) throw (SALOME::SALOME_Exception);