1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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