- add python, missing gui
[enigma2.git] / lib / python / python.h
diff --git a/lib/python/python.h b/lib/python/python.h
new file mode 100644 (file)
index 0000000..bde1814
--- /dev/null
@@ -0,0 +1,16 @@
+#ifndef __lib_python_python_h
+#define __lib_python_python_h
+
+#include <string>
+
+class ePython
+{
+public:
+       ePython();
+       ~ePython();
+       int execute(const std::string &pythonfile, const std::string &funcname);
+private:
+       
+};
+
+#endif