X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=resources%2Fyacsgen_example.py;h=d18e387b036a122053f24cb54f957d563bf12445;hb=9424ad6fd6375ff4a4c89ebd6ffeb852bf38b841;hp=b1ea04211154c3f82d94cd3192cd05ec339e4312;hpb=3217c35168917ac2262e8c177b191612324f98b8;p=samples%2Fgenericsolver.git diff --git a/resources/yacsgen_example.py b/resources/yacsgen_example.py index b1ea042..d18e387 100755 --- a/resources/yacsgen_example.py +++ b/resources/yacsgen_example.py @@ -1,24 +1,22 @@ #!/usr/bin/env python # -# Copyright (C) 2009-2012 EDF R&D +# Copyright (C) 2009-2022 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) +""", + ), ] )