| 28 | } |
| 29 | |
| 30 | void export_intvec(){ |
| 31 | boost::python::class_<Intvec>("IntVector") |
| 32 | .def("__str__", intvec_as_str) |
| 33 | .def(boost::python::init <>()) |
| 34 | .def(boost::python::vector_indexing_suite<Intvec>()); |
| 35 | } |
| 36 | #endif |
no outgoing calls
no test coverage detected