aboutsummaryrefslogtreecommitdiff
path: root/lib/python/python.h
blob: bde18146c1758d5e33171de99a3cc50da1428b7e (plain)
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