diff dwtx/dwtxhelper/CharacterIterator.d @ 158:25f1f92fa3df

...
author Frank Benoit <benoit@tionex.de>
date Tue, 26 Aug 2008 02:46:34 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dwtx/dwtxhelper/CharacterIterator.d	Tue Aug 26 02:46:34 2008 +0200
@@ -0,0 +1,17 @@
+module dwtx.dwtxhelper.CharacterIterator;
+
+interface CharacterIterator {
+    static const char DONE = '\u00FF';
+    Object clone();
+    char   current();
+    char   first();
+    int    getBeginIndex();
+    int    getEndIndex();
+    int    getIndex();
+    char   last();
+    char   next();
+    char   previous();
+    char   setIndex(int position);
+}
+
+