标签: c++ python swig
我想让swig知道我的const_iterators的类型,以便它可以GC它们并摆脱这个错误:
swig/python detected a memory leak of type 'MyClass::const_iterator *', no destructor found
我无法弄清楚我应该如何从python转到C ++然后再使用typemap(in)和typemap(out)指令。我可以在python中使用这些对象,但我想我错过了一些关于指针swig和C-API的重要信息。