| 27 | using namespace boost::python; |
| 28 | |
| 29 | BOOST_PYTHON_MODULE(iterators) |
| 30 | { |
| 31 | class_<Example>("Example") |
| 32 | .def("strings", range(&Example::begin, &Example::end)) |
| 33 | .def("add", &Example::add) |
| 34 | ; |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected