bde18146c1758d5e33171de99a3cc50da1428b7e
[enigma2.git] / lib / python / python.h
1 #ifndef __lib_python_python_h
2 #define __lib_python_python_h
3
4 #include <string>
5
6 class ePython
7 {
8 public:
9         ePython();
10         ~ePython();
11         int execute(const std::string &pythonfile, const std::string &funcname);
12 private:
13         
14 };
15
16 #endif