Implementation of the issue 19950.

This commit is contained in:
rnv 2008-09-24 11:58:56 +00:00
parent 0902392b50
commit 98dad5e3cc
2 changed files with 21 additions and 0 deletions

View File

@ -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

View File

@ -195,6 +195,10 @@ public:
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);