2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00

fixed bug where a vector<T*> is being wrapped by the indexing suite.

[SVN r29930]
This commit is contained in:
Joel de Guzman
2005-07-07 14:00:31 +00:00
parent 331209d8b5
commit 980733a96d
5 changed files with 101 additions and 2 deletions

48
test/pointer_vector.cpp Normal file
View File

@@ -0,0 +1,48 @@
#include <vector>
#include <boost/python.hpp>
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
using namespace boost::python;
class Abstract
{
public:
virtual std::string f() =0;
};
class Concrete1 : public Abstract
{
public:
virtual std::string f() { return "harru"; }
};
typedef std::vector<Abstract*> ListOfObjects;
class DoesSomething
{
public:
DoesSomething() {}
ListOfObjects returnList()
{
ListOfObjects lst;
lst.push_back(new Concrete1()); return lst;
}
};
BOOST_PYTHON_MODULE(pointer_vector_ext)
{
class_<Abstract, boost::noncopyable>("Abstract", no_init)
.def("f", &Abstract::f)
;
class_<ListOfObjects>("ListOfObjects")
.def( vector_indexing_suite<ListOfObjects>() )
;
class_<DoesSomething>("DoesSomething")
.def("returnList", &DoesSomething::returnList)
;
}