Salome HOME
shorten code
[modules/smesh.git] / idl / SMESH_Gen.idl
index 7cc93177b00784f00da161877c512d8c8a46051a..4bec6e9d868310c0055bf966a6e8c14597e65c06 100644 (file)
@@ -238,6 +238,14 @@ module SMESH
                              in GEOM::GEOM_Object theSubObject )
       raises ( SALOME::SALOME_Exception );
 
+    /*!
+     * Evaluates size of prospective mesh on a shape
+     */
+    long_array  Evaluate(in SMESH_Mesh        theMesh, 
+                        in GEOM::GEOM_Object theSubObject)
+      //inout long_array     theNbElems)
+      raises ( SALOME::SALOME_Exception );
+
     /*!
      * Calculate Mesh as preview till indicated dimension
      * First, verify list of hypothesis associated with the subShape.
@@ -331,6 +339,16 @@ module SMESH
      * Can be used to check if the object was created in the same container, as this engine.
      */
     long GetObjectId(in Object theObject);
+
+    /*!
+     * \brief Get MED version of the file by its name.
+     */
+    boolean GetMEDVersion(in string theFileName, out MED_VERSION theVersion);
+
+    /*!
+     * \brief Get names of meshes defined in file with the specified name.
+     */
+    string_array GetMeshNames(in string theFileName);
   };
 
 };