i managed to get a vector working on it's own using<br><br>&nbsp;&nbsp;&nbsp; typedef std::vector&lt;int&gt; IntVec;<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; class_&lt;IntVec&gt;(&quot;bankrolls&quot;)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .def(vector_indexing_suite&lt;IntVec&gt;())<br>&nbsp;&nbsp;&nbsp; ;
<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>