我正在尝试让 Boost Python 与 std::shared_ptr 很好地配合使用。目前,我收到此错误:
Traceback (most recent call last):
File "test.py", line 13, in <module>
comp.place_annotation(circle.centre())
TypeError: No to_python (by-value) converter found for C++ type: std::shared_ptr<cgl::Anchor>
通过调用 circle.centre(),它返回一个 std::shared_ptr。我可以将每个 std::shared_ptr 更改为 boost::shared_ptr (Boost Python 可以很好地使用它)但是要更改的代码量相当可观,我想使用标准库。
circle 方法声明如下:
const std::shared_ptr<Anchor> centre() const
{
return Centre;
}
像这样的锚类:
class Anchor
{
Point Where;
Annotation* Parent;
public:
Anchor(Annotation* parent) :
Parent(parent)
{
// Do nothing.
}
void update(const Renderer& renderer)
{
if(Parent)
{
Parent->update(renderer);
}
}
void set(Point point)
{
Where = point;
}
Point where() const
{
return Where;
}
};
相关的 Boost Python 代码是:
class_<Circle, bases<Annotation> >("Circle", init<float>())
.def("radius", &Circle::radius)
.def("set_radius", &Circle::set_radius)
.def("diameter", &Circle::diameter)
.def("top_left", &Circle::top_left)
.def("centre", &Circle::centre);
// The anchor base class.
class_<Anchor, boost::noncopyable>("Anchor", no_init)
.def("where", &Anchor::where);
我正在使用 Boost 1.48.0。有任何想法吗?