- fixed left/right in language selection (updates language on the fly)
[enigma2.git] / lib / python / python.cpp
index 642d70ba9f3072f26e4773dbc8151453abb7b7f0..2d84287baefe3195fac2bb6292f9b13ee368fb10 100644 (file)
@@ -1,9 +1,24 @@
 #include <lib/python/python.h>
 #include <lib/base/eerror.h>
+                /* avoid warnigs :) */
+#undef _POSIX_C_SOURCE
+#define _POSIX_C_SOURCE 200112L
 #include <Python.h>
 
 extern "C" void init_enigma();
 
+DEFINE_REF(TestObj);
+
+TestObj::TestObj()
+{
+       eDebug("create %p", this);
+}
+
+TestObj::~TestObj()
+{
+       eDebug("destroy %p", this);
+}
+
 #if 0
 ePyObject::ePyObject(void *ptr): m_object(ptr)
 {