Salome HOME
Update copyrights
[modules/smesh.git] / src / Tools / padder / meshjob / idl / MESHJOB.idl
index d4dfcada7304beb55b87ee3f7937996f8b358886..636ead0a605dea276328fc046e12798587977ac9 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2011-2014  EDF R&D
+// Copyright (C) 2011-2019  EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -62,13 +62,23 @@ module MESHJOB
   enum FileType {MED_CONCRETE, MED_STEELBAR};
 
   // This defines a single parameter for the job initialization (a med file)
-  struct MeshJobParameter
+  struct MeshJobFile
   {
     string file_name;
     FileType file_type;
     string group_name;
   };
   
+  // This defines a set of parameters for the job initialization
+  typedef sequence<MESHJOB::MeshJobFile> MeshJobFileList;
+
+  // This defines a single parameter for the job initialization
+  struct MeshJobParameter
+  {
+    string name;
+    string value;
+  };
+  
   // This defines a set of parameters for the job initialization
   typedef sequence<MESHJOB::MeshJobParameter> MeshJobParameterList;
 
@@ -97,7 +107,9 @@ module MESHJOB
       raises (SALOME::SALOME_Exception);
 
     /*! Initialize a smesh computation job and return the job identifier */
-    long    initialize(in MESHJOB::MeshJobParameterList meshJobParameterList, in string configId)
+    long    initialize(in MESHJOB::MeshJobFileList meshJobFileList,
+                       in MESHJOB::MeshJobParameterList MeshJobParameterList,
+                       in string configId)
       raises (SALOME::SALOME_Exception);
 
     /*! Submit the job execution and return true if submission is OK */