i managed to get a vector working on it's own using<br><br> typedef std::vector<int> IntVec;<br> <br> class_<IntVec>("bankrolls")<br> .def(vector_indexing_suite<IntVec>())<br> ;
<br><br>
but now i would like to make a vector a member of a class.<br><br>what steps would i take to make the vector a member of a c++ class and have it callable from python?<br>