0
我已經使用SWIG tutorial的「真正的懶惰」方法成功地爲C#打包了一個C++庫。它看起來像這樣:我可以在SWIG接口文件中結合顯式聲明和「真正懶惰」聲明嗎?
%module example
%{
/* Includes the header in the wrapper code */
#include "header1.h"
#include "header2.h"
%}
/* Parse the header file to generate wrappers */
%include "header1.h"
%include "header2.h"
但是,這並不公開所有我想要的類和方法。我可以以某種方式添加顯式引用來創建缺少的類和方法嗎?