Moved CGAL::iterator to CGAL::cpp98

This commit is contained in:
Mael Rouxel-Labbé
2018-06-13 15:58:19 +02:00
parent 0c96d06fc3
commit 6283291c8a
6 changed files with 23 additions and 19 deletions
@@ -54,7 +54,8 @@ class PointsInKdTreeGraphicsItem : public GraphicsItem
// Instead of first collecting points into a container, and then draw them
// we use an output iterator that draws them on the fly
template <typename K>
class Draw : public CGAL::iterator<std::output_iterator_tag, void, void, void, void> {
class Draw
: public CGAL::cpp98::iterator<std::output_iterator_tag, void, void, void, void> {
QPainter* painter;
QMatrix* matrix;
Converter<K> convert;