7#include "MantidPythonInterface/geometry/DetectorInfoPythonIterator.h"
9#include <boost/python/class.hpp>
10#include <boost/python/iterator.hpp>
11#include <boost/python/module.hpp>
13using Mantid::PythonInterface::DetectorInfoPythonIterator;
20 class_<DetectorInfoPythonIterator>(
"DetectorInfoPythonIterator", no_init)
21 .def(
"__iter__", objects::identity_function())
23 .def(
"next", &DetectorInfoPythonIterator::next)
25 .def(
"__next__", &DetectorInfoPythonIterator::next)
void export_DetectorInfoPythonIterator()