Salome HOME
Update copyrights
[samples/genericsolver.git] / resources / yacsgen_example.py
index 53e3247abf60410c3f52dafd3b9175897a7fd0b8..569d15b6162d75efc0bdc64d16be95ff1da058f3 100755 (executable)
@@ -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)
+""",
+                                  ),
                           ]
                 )