Hello I have some trouble with handling c++-container.
I have these code:
typedef struct foo {
typedef std::vector<double> pt_coords;
typedef std::vector<pt_coords> pt_list;
};
foo return_foo();
Now I want to wrap these, but I don't know how! I have test this, but I think it's wrong:
BOOST_PYTHON_MODULE(...) {
implicitly_convertible<foo::pt_coords,tuple>();