]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
Implementation of the issue 19950.
authorrnv <rnv@opencascade.com>
Wed, 24 Sep 2008 11:58:56 +0000 (11:58 +0000)
committerrnv <rnv@opencascade.com>
Wed, 24 Sep 2008 11:58:56 +0000 (11:58 +0000)
src/SMESH_I/SMESH_MEDMesh_i.cxx
src/SMESH_I/SMESH_MEDMesh_i.hxx

index b7f15cf172f231e52a2d7f083170af5c59fc75c0..33a313954ac18981cc44cde0ca831932b00dad13 100644 (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
index 05fe0727d0ca8b20160a17cf2ffc538d9bd420c3..ef4526cc6127d24bbb6a1ed03654fc7902806203 100644 (file)
@@ -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);