我正在尝试将swig与主头文件一起使用。似乎swig会这样做,但我遇到了一些问题。我问了一个关于它的第一个问题here on stackoverflow,虽然我还没有成功,但我已经取得了足够的进展,感到鼓励继续......
现在,这是我的界面文件:
/* File : myAPI.i */
%module myAPI
%{
#include "stdafx.h"
#include <boost/algorithm/string.hpp>
... many other includes ...
#include "myAPI.h"
#include <boost/algorithm/string/predicate.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/operations.hpp>
using boost::format;
using namespace std;
using namespace boost::algorithm;
using namespace boost::serialization;
%}
/* Let's just grab the original header file here */
%include "myAPI.h"
据我所知,swig运行就好了。但是,在生成的代码中,它产生了许多定义,如下所示:
SWIGINTERN int Swig_var_ModState_set(PyObject *_val) {
{
void *argp = 0;
int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_MY_API, 0 | 0);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in variable '""ModState""' of type '""MY_API""'");
}
if (!argp) {
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""ModState""' of type '""MY_API""'");
} else {
MY_API * temp;
temp = reinterpret_cast< MY_API * >(argp);
ModState = *temp;
if (SWIG_IsNewObj(res)) delete temp;
}
}
return 0;
fail:
return 1;
}
Visual Studio 2010抱怨每个代码块都有错误。该错误基于temp
var:
2>c:\svn\myapi\myapi_wrap.cxx(3109): error C2071: 'temp' : illegal storage class
我尝试将此变量的全局声明作为int添加到swig生成的_wrap.cxx文件中,但它没有用。 (显然是一种天真的做法......)。
有没有人对我需要做些什么来避免这个错误?
提前致谢!