/* ********************************************************************** * Copyright (c) 2000, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** * Date Name Description * 01/11/2000 aliu Creation. ********************************************************************** */ #ifndef NULTRANS_H #define NULTRANS_H #include "unicode/translit.h" class U_I18N_API NullTransliterator : public Transliterator { static const char* _ID; public: NullTransliterator(); virtual ~NullTransliterator(); Transliterator* clone(void) const; virtual void handleTransliterate(Replaceable& text, UTransPosition& offset, UBool isIncremental) const; }; inline NullTransliterator::NullTransliterator() : Transliterator(_ID, 0) {} inline NullTransliterator::~NullTransliterator() {} #endif