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