diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2004-10-01 13:21:35 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2004-10-01 13:21:35 +0000 |
| commit | ddc3964ed95d01e72229dc9af968a327cd84e56c (patch) | |
| tree | 93e6694c639db3d188f5b2868f6b2b2951d21d60 /lib/python/python.h | |
| parent | 1aeefd997cc362c3b37c1587c5f08891b35c3a75 (diff) | |
| download | enigma2-ddc3964ed95d01e72229dc9af968a327cd84e56c.tar.gz enigma2-ddc3964ed95d01e72229dc9af968a327cd84e56c.zip | |
- add python, missing gui
- remove console (needs to be rewritten anyway)
- eString -> std::string
Diffstat (limited to 'lib/python/python.h')
| -rw-r--r-- | lib/python/python.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/python/python.h b/lib/python/python.h new file mode 100644 index 00000000..bde18146 --- /dev/null +++ b/lib/python/python.h @@ -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 |
