00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
#ifndef NULTRANS_H
00011
#define NULTRANS_H
00012
00013
#include "unicode/translit.h"
00014
00015 U_NAMESPACE_BEGIN
00016
00022 class U_I18N_API NullTransliterator :
public Transliterator {
00023
00024
public:
00025
00030 static const UChar ID[];
00031
00036 static const UChar SHORT_ID[];
00037
00042 NullTransliterator();
00043
00048
virtual ~NullTransliterator();
00049
00054
Transliterator*
clone(
void) const;
00055
00060 virtual
void handleTransliterate(
Replaceable& text,
UTransPosition& offset,
00061 UBool isIncremental) const;
00062 };
00063
00064 inline NullTransliterator::NullTransliterator() :
Transliterator(ID, 0) {}
00065
00066 inline NullTransliterator::~NullTransliterator() {}
00067
00068 U_NAMESPACE_END
00069
00070
#endif