4541f4aea8
X-SVN-Rev: 649
27 lines
924 B
C++
27 lines
924 B
C++
/*
|
|
**********************************************************************
|
|
* Copyright (c) 2000, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
**********************************************************************
|
|
* Date Name Description
|
|
* 01/11/2000 aliu Creation.
|
|
**********************************************************************
|
|
*/
|
|
#include "unicode/nultrans.h"
|
|
|
|
const char* NullTransliterator::_ID = "Null";
|
|
|
|
Transliterator* NullTransliterator::clone(void) const {
|
|
return new NullTransliterator();
|
|
}
|
|
|
|
int32_t NullTransliterator::transliterate(Replaceable&, int32_t,
|
|
int32_t limit) const {
|
|
return limit;
|
|
}
|
|
|
|
void NullTransliterator::handleTransliterate(Replaceable& text, Position& offsets,
|
|
bool_t isIncremental) const {
|
|
offsets.cursor = offsets.limit;
|
|
}
|