summaryrefslogtreecommitdiffstats
path: root/fprg_concat.py
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-04-13 21:07:42 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-04-13 21:07:42 +0200
commita62cb4e37d008d47480cdd6c25d928044b8afe31 (patch)
treef16e0109caf00d8989d56e2e5392851117db8814 /fprg_concat.py
downloadpyevenja-a62cb4e37d008d47480cdd6c25d928044b8afe31.zip
pyevenja-a62cb4e37d008d47480cdd6c25d928044b8afe31.tar.gz
initial commit, old code from ~2007
Diffstat (limited to 'fprg_concat.py')
-rw-r--r--fprg_concat.py53
1 files changed, 53 insertions, 0 deletions
diff --git a/fprg_concat.py b/fprg_concat.py
new file mode 100644
index 0000000..8ce3556
--- /dev/null
+++ b/fprg_concat.py
@@ -0,0 +1,53 @@
+#/***************************************************************************
+# fprg_concat.h
+# -----------
+# begin : sam nov 2 2002
+# copyright : (C) 1992-2004 by Fabian Padilla
+# email : fp@bridgethink.com
+# ***************************************************************************/
+
+# /***************************************************************************
+# * *
+# * This program is free software; you can redistribute it and/or modify *
+# * it under the terms of the Foundation Public License as published by *
+# * bridgethink sarl; either version 2 of the License, or *
+# * (at your option) any later version. *
+# * *
+# ***************************************************************************/
+
+#
+# from C++ to python by Jeremy Zurcher <jeremy@asynk.ch>
+#
+
+""" doc """
+
+__all__ = ["Fdoor_concat"]
+
+from fevenprg import FevenPrg
+
+from returncodes import RET_OK
+from evenjastrings import ACT_END
+
+class Fdoor_concat(FevenPrg):
+
+ def __init__(self):
+ FevenPrg.__init__(self) # force construstor
+
+ def __str__(self):
+ return "\t"+FevenPrg.__str__(self)+\
+ "Fdoor_concat - (null)\n"
+
+ def receive_evenData(self,evenData):
+ evenDataB = evenData.getEvenDataB()
+
+ str = evenData.getData("TXT")
+ str += evenDataB.getData("TXT")
+ evenData.setData("TXT",str)
+ evenData.resetDestination()
+ evenData.addDestination("printf")
+ self.sendEvenData(evenData)
+
+ evenDataB.definePortAction(ACT_END)
+ self.sendEvenData(evenDataB)
+
+ return RET_OK