aboutsummaryrefslogtreecommitdiff
path: root/lib/python/connections.h
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-02-21 16:42:50 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-02-21 16:42:50 +0000
commitf0eb06742afb77ddf4ea856493ff47bf836be0a2 (patch)
tree80bee93d910a611d9a28c8a6379840851061fabb /lib/python/connections.h
parenta1664e81dd83e11828909d10b629ed04ea7d3467 (diff)
downloadenigma2-f0eb06742afb77ddf4ea856493ff47bf836be0a2.tar.gz
enigma2-f0eb06742afb77ddf4ea856493ff47bf836be0a2.zip
PSignal was already able to handle this without modifications
Diffstat (limited to 'lib/python/connections.h')
-rw-r--r--lib/python/connections.h30
1 files changed, 13 insertions, 17 deletions
diff --git a/lib/python/connections.h b/lib/python/connections.h
index ac5865e5..8a06f7fa 100644
--- a/lib/python/connections.h
+++ b/lib/python/connections.h
@@ -40,6 +40,16 @@ public:
PyObject *get() { Py_INCREF(m_list); return m_list; }
};
+inline PyObject *PyFrom(int v)
+{
+ return PyInt_FromLong(v);
+}
+
+inline PyObject *PyFrom(const char *c)
+{
+ return PyString_FromString(c);
+}
+
template <class R>
class PSignal0: public PSignal, public Signal0<R>
{
@@ -60,21 +70,7 @@ public:
R operator()(V0 a0)
{
PyObject *pArgs = PyTuple_New(1);
- PyTuple_SET_ITEM(pArgs, 0, PyInt_FromLong(a0));
- callPython(pArgs);
- Py_DECREF(pArgs);
- return Signal1<R,V0>::operator()(a0);
- }
-};
-
-template <class R, class V0>
-class PSignal1Str: public PSignal, public Signal1<R,V0>
-{
-public:
- R operator()(V0 a0)
- {
- PyObject *pArgs = PyTuple_New(1);
- PyTuple_SET_ITEM(pArgs, 0, PyString_FromString(a0));
+ PyTuple_SET_ITEM(pArgs, 0, PyFrom(a0));
callPython(pArgs);
Py_DECREF(pArgs);
return Signal1<R,V0>::operator()(a0);
@@ -88,8 +84,8 @@ public:
R operator()(V0 a0, V1 a1)
{
PyObject *pArgs = PyTuple_New(2);
- PyTuple_SET_ITEM(pArgs, 0, PyInt_FromLong(a0));
- PyTuple_SET_ITEM(pArgs, 1, PyInt_FromLong(a1));
+ PyTuple_SET_ITEM(pArgs, 0, PyFrom(a0));
+ PyTuple_SET_ITEM(pArgs, 1, PyFrom(a1));
callPython(pArgs);
Py_DECREF(pArgs);
return Signal2<R,V0,V1>::operator()(a0, a1);