X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FTools%2Fpadder%2Fmeshjob%2Fidl%2FMESHJOB.idl;h=0cf7cfef4e8dbc30c450c4b145409584da92c2b4;hp=3179daff36b51e72a801a854cdb0b55a86a76915;hb=a274ade365bd0f0e19d56c577acc4a13aa1972a7;hpb=7eda9ca931ed2a11cb5e4637e4ffe19f5c061115 diff --git a/src/Tools/padder/meshjob/idl/MESHJOB.idl b/src/Tools/padder/meshjob/idl/MESHJOB.idl index 3179daff3..0cf7cfef4 100644 --- a/src/Tools/padder/meshjob/idl/MESHJOB.idl +++ b/src/Tools/padder/meshjob/idl/MESHJOB.idl @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2016 EDF R&D +// Copyright (C) 2011-2021 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 @@ -33,7 +33,7 @@ module MESHJOB { // - // Structure to transmit the parameters requiered for the job to run + // Structure to transmit the parameters required for the job to run // the executable program on the target resource. See configure // service. // @@ -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 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 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 */