用swig实现python调用C\C++的方法
本文技术平台:win7,vs2010,python2.7(64位)
1.下载swig
在[www.swig.org]官网上下载相应的安装包,下载后解压安装包到任意路径,注意:路径中最好不要带空格。这样swig便可以使用
2.c++源文件和swig接口文件,文件如下:
example.h
/* example.h */
#ifndef EXAMPLE_H
#define EXAMPLE_H
//void cHelloWorld();
int compute(int a, int b);
#endif
example.cpp
/* example.cpp */
#include <iost