aboutsummaryrefslogtreecommitdiff
path: root/lib/python/enigma_python.i
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-09-26 17:02:47 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-09-26 17:02:47 +0000
commitd1ba8203832c54b4a98978c6033296183a24b4d0 (patch)
treebb15219b137658dec7b8665910973b361b31dce8 /lib/python/enigma_python.i
parent71f4df6d025fa09d937dd5e259992cf04b4a04f8 (diff)
downloadenigma2-d1ba8203832c54b4a98978c6033296183a24b4d0.tar.gz
enigma2-d1ba8203832c54b4a98978c6033296183a24b4d0.zip
- add SWIG_VOID, add tyemap_output_ptr
Diffstat (limited to 'lib/python/enigma_python.i')
-rw-r--r--lib/python/enigma_python.i12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i
index 3eb22d55..79f9296e 100644
--- a/lib/python/enigma_python.i
+++ b/lib/python/enigma_python.i
@@ -83,6 +83,18 @@ extern PSignal1<void,int> &keyPressedSignal();
%feature("ref") iObject "$this->AddRef(); eDebug(\"AddRef (%s:%d)!\", __FILE__, __LINE__); "
%feature("unref") iObject "$this->Release(); eDebug(\"Release! %s:%d\", __FILE__, __LINE__); "
+/* this magic allows smartpointer to be used as OUTPUT arguments, i.e. call-by-reference-styled return value. */
+
+%define %typemap_output_ptr(Type)
+ %typemap(in,numinputs=0) Type *OUTPUT ($*1_ltype temp),
+ Type &OUTPUT ($*1_ltype temp)
+ "$1 = new Type;";
+ %fragment("t_out_helper"{Type},"header",
+ fragment="t_output_helper") {}
+ %typemap(argout,fragment="t_out_helper"{Type}) Type *OUTPUT, Type &OUTPUT
+ "$result = t_output_helper($result, (SWIG_NewPointerObj((void*)($1), $1_descriptor, 1)));"
+%enddef
+
%newobject eDebugClassPtr::operator->;
#define DEBUG