aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2011-03-30 22:20:27 +0200
committerAndreas Oberritter <obi@opendreambox.org>2011-04-01 01:31:31 +0200
commit3f2f09fb2bacead0185428eee9a1090c5a53bdeb (patch)
tree5bd215123309c2f40fc69b4befdde1c459f8cdd7 /lib/python
parent958cfa17e6c409ffadf945101dc104923ec5d418 (diff)
downloadenigma2-3f2f09fb2bacead0185428eee9a1090c5a53bdeb.tar.gz
enigma2-3f2f09fb2bacead0185428eee9a1090c5a53bdeb.zip
add PSignal3 template
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/connections.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/python/connections.h b/lib/python/connections.h
index b4cd1c79..374749ab 100644
--- a/lib/python/connections.h
+++ b/lib/python/connections.h
@@ -80,4 +80,23 @@ public:
}
};
+template <class R, class V0, class V1, class V2>
+class PSignal3: public PSignal, public Signal3<R,V0,V1,V2>
+{
+public:
+ R operator()(V0 a0, V1 a1, V2 a2)
+ {
+ if (m_list)
+ {
+ PyObject *pArgs = PyTuple_New(3);
+ PyTuple_SET_ITEM(pArgs, 0, PyFrom(a0));
+ PyTuple_SET_ITEM(pArgs, 1, PyFrom(a1));
+ PyTuple_SET_ITEM(pArgs, 2, PyFrom(a2));
+ callPython(pArgs);
+ Org_Py_DECREF(pArgs);
+ }
+ return Signal3<R,V0,V1,V2>::operator()(a0, a1, a2);
+ }
+};
+
#endif