SWIG:函数从另一个模块返回一个对象

时间:2016-01-06 09:05:23

标签: c++ swig gdal

我想知道是否可以使用SWIG混合来自两个模块的对象,例如是否有可能模块A的功能返回模块B的对象?

我的用例如下:

class_a.hpp:

class ClassA
{
public:
    const OGRPolygon& get_geom() const;
    void set_geom(OGRPolygon* geom);
protected:
    OGRPolygon* _footprint;
};

class_a.cpp:

const OGRPolygon& ForCity::SPreC_cpp::ClassA::get_geom() const
{
    return *(this->_footprint);
}

void ForCity::SPreC_cpp::ClassA::set_geom(OGRPolygon* geom)
{
    this->_footprint = geom;
}

test.i:

%module test
%include "class_A.hpp"

然后在Python中,我希望能够做到这样的事情:

A = test.ClassA()
G = ogr.Geometry(ogr.wkbLinearRing)
# filling the geometry...
A.set_geom(G) # set the geometry of A
A.get_geom().GetArea() # use the geometry of A as a usual OGR geometry

是否有可能以及如何做到这一点?

1 个答案:

答案 0 :(得分:1)

这可以通过在%import ClassB文件中加入.i指令来实现。该指令读取类型信息但不生成绑定。