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:
48
test/pointer_vector.cpp
Normal file
48
test/pointer_vector.cpp
Normal 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)
|
||||
;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user