【发布时间】:2012-03-18 10:39:48
【问题描述】:
考虑以下类声明:
namespace X {
template<class T>
class Foo {
public:
Foo();
virtual ~Foo();
T value() const;
};
template<class T>
class Foo<vector<T>> {
public:
Foo();
virtual ~Foo();
T value( const int ) const;
};
}
对于他们,我在 foo.i 文件中有以下声明
%include "stl.i"
%include "std_string.i"
%include "std_vector.i"
namespace X {
using namespace std;
template<class T>
class Foo {
public:
Foo();
virtual ~Foo();
T value() const;
};
template<class T>
class Foo<vector<T> > {
public:
Foo();
virtual ~Foo();
T value( const int ) const;
};
%template(FooInt) Foo<int>;
%template(FooString) Foo<string>;
%template(FooVectorInt) Foo<vector<int> >;
}
这两个类之间的区别在于后者对向量容器的特殊化和 value() 方法的不同签名,其中第一个不带参数,而第二个需要 an整数。
swig 整理的包装器代码包装了%template(FooVectorInt) 错误,因为它调用了value() 方法而不是专用向量方法value(const int)。给我以下编译错误消息:
foo_wrap.cxx: in function »int _wrap_FooVectorInt_value(lua_State*)«:
/home/noobsaibot/foo/bindings/src/lua/foo_wrap.cxx:6706:81: error: no matching function to call »X::Foo<std::vector<int> >::value() const«
/home/noobsaibot/foo/src/foo.h:78:5: note: candidate is: T X::Foo<std::vector<_RealType> >::value(int) const [with T = int, int = unsigned int]
关于我可能缺少什么以使 swig 了解哪个功能是正确的功能的任何建议?
干杯
【问题讨论】: