Salome HOME
Merging with the MAN_SALOME2 branch
[modules/med.git] / idl / MED_Gen.idl
1 //=============================================================================
2 // File      : Med_Gen.idl
3 // Project   : SALOME
4 // Copyright : EDF 2001
5 //=============================================================================
6
7 #ifndef _Med_GEN_IDL_
8 #define _Med_GEN_IDL_
9
10
11 #include "SALOME_Exception.idl"
12 #include "SALOME_Component.idl"
13 #include "SALOMEDS.idl"
14 #include "MED.idl"
15
16 module SALOME_MED
17 {
18   interface MED_Gen : Engines::Component, SALOMEDS::Driver
19   {
20         SALOME_MED::MESH readMeshInFile(in string fileName,
21                                         in string studyName,
22                                         in string meshName )
23                                         raises (SALOME::SALOME_Exception);
24         SALOME_MED::FIELD readFieldInFile(in string fileName,
25                                         in string studyName,
26                                         in string fieldName,
27                                         in long ordre,
28                                         in long iter )
29                                         raises (SALOME::SALOME_Exception);
30         SALOME_MED::MED readStructFile(in string fileName,
31                                         in string studyName )
32                                         raises (SALOME::SALOME_Exception);
33
34         void readStructFileWithFieldType(in string fileName,
35                                          in string studyName )
36           raises (SALOME::SALOME_Exception);
37   };
38
39 };
40
41 #endif