You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
439 B
C++
25 lines
439 B
C++
#include "Python.h"
|
|
#include "src1.h"
|
|
|
|
extern "C"
|
|
{
|
|
void init_swigdemo(void);
|
|
}
|
|
|
|
TestClass* TestClass::_instance = 0;
|
|
|
|
int main()
|
|
{
|
|
Py_Initialize();
|
|
init_swigdemo();
|
|
|
|
/*FILE* file_py;
|
|
file_py = fopen(i_oFile.toLocal8Bit(), "r");
|
|
PyRun_SimpleFile(file_py, i_oFile.toLocal8Bit());
|
|
fclose(file_py);
|
|
*/
|
|
PyRun_SimpleString("import swigdemo, sys\nsys.stderr.write(str(swigdemo.TestClass.instance().test()))");
|
|
Py_Finalize();
|
|
}
|
|
|