X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=resources%2Fyacsgen_example.py;h=569d15b6162d75efc0bdc64d16be95ff1da058f3;hb=8a79bd5e570fc2d29eadb4b9ec8a5cd0462f808a;hp=53e3247abf60410c3f52dafd3b9175897a7fd0b8;hpb=a1043dddacefb56a058e9167b6c3ec810e64a7cf;p=samples%2Fgenericsolver.git diff --git a/resources/yacsgen_example.py b/resources/yacsgen_example.py index 53e3247..569d15b 100755 --- a/resources/yacsgen_example.py +++ b/resources/yacsgen_example.py @@ -1,24 +1,22 @@ #!/usr/bin/env python # -# Copyright (C) 2009-2011 EDF R&D +# Copyright (C) 2009-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 -# License as published by the Free Software Foundation; either -# version 2.1 of the License. +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com -# -# $Id$ +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # from module_generator import * @@ -69,6 +67,17 @@ else: """, ), Service("Finalize"), + Service("GetFilesToTransfer", + inport=[("studyID", "long"), + ("detCaseEntry", "string")], + outport=[("inputFiles", "stringvec"), + ("outputFiles", "stringvec")], + body=""" +inputFiles = [] +outputFiles = [] +return (inputFiles, outputFiles) +""", + ), ] )