aboutsummaryrefslogtreecommitdiff
path: root/lib/python/python.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/python.h')
-rw-r--r--lib/python/python.h16
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