我想使用SWIG 3.0.12生成一个C#接口。对于公共功能,这可以按预期工作。但是,如果我尝试向接口添加属性,则它们不是生成的接口的一部分。
是否可以告诉SWIG向公共接口添加属性?
这是一个最小的例子:
我的C ++类看起来像:
class IA
{
public:
virtual std::string GetX() = 0;
virtual void SetX(const std::string& x) = 0;
virtual void MyFunction() = 0;
};
使用以下界面文件:
%module example
%{
#include "IA.h"
%}
%include <std_string.i>
%include <attribute.i>
%include <swiginterface.i>
%attribute(IA, std::string, X, GetX, SetX);
%interface(IA);
%include "IA.h"
生成的IA.cs看起来像:
public virtual void MyFunction() {
examplePINVOKE.IA_MyFunction(swigCPtr);
}
public string X {
set {
examplePINVOKE.IA_X_set(swigCPtr, value);
if (examplePINVOKE.SWIGPendingException.Pending) throw examplePINVOKE.SWIGPendingException.Retrieve();
}
get {
string ret = examplePINVOKE.IA_X_get(swigCPtr);
if (examplePINVOKE.SWIGPendingException.Pending) throw examplePINVOKE.SWIGPendingException.Retrieve();
return ret;
}
}
生成的IASwigInterface.cs如下所示:
public interface IASwigInterface {
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
global::System.Runtime.InteropServices.HandleRef GetInterfaceCPtr();
void MyFunction();
}
我希望SWIG为IASwigInterface.cs生成的内容如下:
public interface IASwigInterface {
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
global::System.Runtime.InteropServices.HandleRef GetInterfaceCPtr();
void MyFunction();
string X { get; set; } //<- I want the property to be part of the interface
}
有谁知道如何实现这一目标?