Implementation of the issue 19950.

This commit is contained in:
rnv 2008-09-25 05:34:45 +00:00
parent 9d1bb8e28c
commit 2f1bf11869
2 changed files with 20 additions and 0 deletions

View File

@ -728,6 +728,22 @@ SMESH_MEDMesh_i::getBoundaryElements(SALOME_MED::medEntityMesh entity)
return NULL; 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 * CORBA: Returns references for the support of the skin of the support
* mySupport3D * mySupport3D

View File

@ -195,6 +195,10 @@ public:
getBoundaryElements(SALOME_MED::medEntityMesh entity) getBoundaryElements(SALOME_MED::medEntityMesh entity)
throw (SALOME::SALOME_Exception); 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) SALOME_MED::SUPPORT_ptr getSkin(SALOME_MED::SUPPORT_ptr mySupport3D)
throw (SALOME::SALOME_Exception); throw (SALOME::SALOME_Exception);