Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _Med_GEN_IDL_
00029 #define _Med_GEN_IDL_
00030
00031
00032 #include "SALOME_Exception.idl"
00033 #include "SALOME_Component.idl"
00034 #include "SALOMEDS.idl"
00035 #include "MED.idl"
00036
00037 module SALOME_MED
00038 {
00039 interface MED_Gen_Driver : SALOMEDS::Driver
00040 {
00041 };
00042
00043 interface MED_Gen : Engines::EngineComponent, MED_Gen_Driver
00044 {
00049 SALOME_MED::GMESH readMeshInFile(in string fileName, in string studyName,
00050 in string meshName)
00051 raises(SALOME::SALOME_Exception);
00052
00058 SALOME_MED::FIELD readFieldInFile(in string fileName, in string studyName,
00059 in string fieldName, in long iter,
00060 in long ordre)
00061 raises (SALOME::SALOME_Exception);
00062
00068 SALOME_MED::MED readStructFile(in string fileName,
00069 in string studyName)
00070 raises (SALOME::SALOME_Exception);
00071
00078 void readStructFileWithFieldType(in string fileName,
00079 in string studyName)
00080 raises (SALOME::SALOME_Exception);
00081 };
00082 };
00083
00084 #endif