summaryrefslogtreecommitdiff
path: root/dw/iterator.hh
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2015-01-23 23:56:51 +0100
committerSebastian Geerken <devnull@localhost>2015-01-23 23:56:51 +0100
commit80c90e491f436c20b021d73de5862a19201457e3 (patch)
tree85ecda30caa2e317555232155bfeda446535a6a6 /dw/iterator.hh
parentcf581248257b88e98fa4315525a0ee531b4cb9c8 (diff)
Interrupted drawing etc: cleanup.
Diffstat (limited to 'dw/iterator.hh')
-rw-r--r--dw/iterator.hh26
1 files changed, 0 insertions, 26 deletions
diff --git a/dw/iterator.hh b/dw/iterator.hh
index 686235ed..9460adc4 100644
--- a/dw/iterator.hh
+++ b/dw/iterator.hh
@@ -263,32 +263,6 @@ public:
hpos, vpos); }
};
-/**
- * \brief Some completely different kind of iterator. See \ref
- * dw-interrupted-drawing for details.
- */
-class StackingIteratorStack
-{
-private:
- lout::container::untyped::Vector *vector;
- int topPos;
-
-public:
- StackingIteratorStack ();
- ~StackingIteratorStack ();
-
- void intoStringBuffer(lout::misc::StringBuffer *sb);
-
- inline bool atRealTop () { return topPos == vector->size () - 1; }
- inline lout::object::Object *getTop () { return vector->get (topPos); }
-
- void push (lout::object::Object *object);
- void pop ();
- void forward ();
- void backward ();
- void cleanup ();
-};
-
} // namespace core
} // namespace dw