view dwtx/dwtxhelper/CharacterIterator.d @ 200:eb3414669eb0 default tip

fix for dmd 1.041 and tango 0.99.8
author Frank Benoit <benoit@tionex.de>
date Sat, 28 Mar 2009 03:09:57 +0100
parents 25f1f92fa3df
children
line wrap: on
line source

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);
}