]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/chariter.cpp
ICU-57131.0.1.tar.gz
[apple/icu.git] / icuSources / common / chariter.cpp
index 064f533273465df71bf9c23974784002dd19d298..2d923ea0a6b5a80b4c001f3ca86f09780d87bef0 100644 (file)
@@ -1,6 +1,6 @@
 /*
 **********************************************************************
 /*
 **********************************************************************
-*   Copyright (C) 1999-2002, International Business Machines
+*   Copyright (C) 1999-2011, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 **********************************************************************
 */
 *   Corporation and others.  All Rights Reserved.
 **********************************************************************
 */
@@ -9,6 +9,15 @@
 
 U_NAMESPACE_BEGIN
 
 
 U_NAMESPACE_BEGIN
 
+ForwardCharacterIterator::~ForwardCharacterIterator() {}
+ForwardCharacterIterator::ForwardCharacterIterator()
+: UObject()
+{}
+ForwardCharacterIterator::ForwardCharacterIterator(const ForwardCharacterIterator &other)
+: UObject(other)
+{}
+
+
 CharacterIterator::CharacterIterator()
 : textLength(0), pos(0), begin(0), end(0) {
 }
 CharacterIterator::CharacterIterator()
 : textLength(0), pos(0), begin(0), end(0) {
 }
@@ -54,6 +63,8 @@ CharacterIterator::CharacterIterator(int32_t length, int32_t textBegin, int32_t
     }
 }
 
     }
 }
 
+CharacterIterator::~CharacterIterator() {}
+
 CharacterIterator::CharacterIterator(const CharacterIterator &that) :
 ForwardCharacterIterator(that),
 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
 CharacterIterator::CharacterIterator(const CharacterIterator &that) :
 ForwardCharacterIterator(that),
 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)