#include #include #include #include "STIdxIter.h" using namespace boost::python; namespace asap { namespace python { void python_Iterator() { class_("iterator") .def( init < const string &, const vector & > () ) .def("current", &STIdxIterAcc::currentSTL) .def("pastEnd", &STIdxIterAcc::pastEnd) .def("next", &STIdxIterAcc::next) .def("getrows", &STIdxIterAcc::getRowsSTL) ; }; } //namespace python } // namespace asap