X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/b75a7d8f3b4adbae880cab104ce2c6a50eee4db2..ef6cf650f4a75c3f97de06b51fa104f2069b9ea2:/icuSources/common/chariter.cpp?ds=inline diff --git a/icuSources/common/chariter.cpp b/icuSources/common/chariter.cpp index 064f5332..2d923ea0 100644 --- a/icuSources/common/chariter.cpp +++ b/icuSources/common/chariter.cpp @@ -1,6 +1,6 @@ /* ********************************************************************** -* Copyright (C) 1999-2002, International Business Machines +* Copyright (C) 1999-2011, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** */ @@ -9,6 +9,15 @@ 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) { } @@ -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)