/*!
* Export Mesh to DAT, UNV and STL Formats
+ * (UNV supported version is I-DEAS 10)
*/
void ExportDAT( in string file )
raises (SALOME::SALOME_Exception);
long AddNode(in double x, in double y, in double z);
+ /*!
+ * Following methods are intented for creation edges, faces
+ * and volumes both similar and quadratic (this is determed
+ * by number of given nodes).
+ * \param IdsOfNodes List of node IDs for creation of element.
+ * Needed order of nodes in this list corresponds to description
+ * of MED. This description is located by the following link:
+ * http://www.salome-platform.org/salome2/web_med_internet/logiciels/
+ * medV2.2.2_doc_html/html/modele_de_donnees.html#3.
+ */
long AddEdge(in long_array IDsOfNodes);
long AddFace(in long_array IDsOfNodes);