summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-4.6/test/intltest/sfwdchit.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/icu/icu-4.6/test/intltest/sfwdchit.h')
-rw-r--r--Build/source/libs/icu/icu-4.6/test/intltest/sfwdchit.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-4.6/test/intltest/sfwdchit.h b/Build/source/libs/icu/icu-4.6/test/intltest/sfwdchit.h
new file mode 100644
index 00000000000..71fbd00ce26
--- /dev/null
+++ b/Build/source/libs/icu/icu-4.6/test/intltest/sfwdchit.h
@@ -0,0 +1,77 @@
+/********************************************************************
+ * COPYRIGHT:
+ * Copyright (c) 1997-2003, International Business Machines Corporation and
+ * others. All Rights Reserved.
+ ********************************************************************/
+
+#ifndef SFDWCHIT_H
+#define SFDWCHIT_H
+
+#include "unicode/chariter.h"
+#include "intltest.h"
+
+class SimpleFwdCharIterator : public ForwardCharacterIterator {
+public:
+ // not used -- SimpleFwdCharIterator(const UnicodeString& s);
+ SimpleFwdCharIterator(UChar *s, int32_t len, UBool adopt = FALSE);
+
+ virtual ~SimpleFwdCharIterator();
+
+ /**
+ * Returns true when both iterators refer to the same
+ * character in the same character-storage object.
+ */
+ // not used -- virtual UBool operator==(const ForwardCharacterIterator& that) const;
+
+ /**
+ * Generates a hash code for this iterator.
+ */
+ virtual int32_t hashCode(void) const;
+
+ /**
+ * Returns a UClassID for this ForwardCharacterIterator ("poor man's
+ * RTTI").<P> Despite the fact that this function is public,
+ * DO NOT CONSIDER IT PART OF CHARACTERITERATOR'S API!
+ */
+ virtual UClassID getDynamicClassID(void) const;
+
+ /**
+ * Gets the current code unit for returning and advances to the next code unit
+ * in the iteration range
+ * (toward endIndex()). If there are
+ * no more code units to return, returns DONE.
+ */
+ virtual UChar nextPostInc(void);
+
+ /**
+ * Gets the current code point for returning and advances to the next code point
+ * in the iteration range
+ * (toward endIndex()). If there are
+ * no more code points to return, returns DONE.
+ */
+ virtual UChar32 next32PostInc(void);
+
+ /**
+ * Returns FALSE if there are no more code units or code points
+ * at or after the current position in the iteration range.
+ * This is used with nextPostInc() or next32PostInc() in forward
+ * iteration.
+ */
+ virtual UBool hasNext();
+
+protected:
+ SimpleFwdCharIterator() {}
+ SimpleFwdCharIterator(const SimpleFwdCharIterator &other)
+ : ForwardCharacterIterator(other) {}
+ SimpleFwdCharIterator &operator=(const SimpleFwdCharIterator&) { return *this; }
+private:
+ static const int32_t kInvalidHashCode;
+ static const int32_t kEmptyHashCode;
+
+ UChar *fStart, *fEnd, *fCurrent;
+ int32_t fLen;
+ UBool fBogus;
+ int32_t fHashCode;
+};
+
+#endif