00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifdef _ICU_
00019
00020 #ifndef UTF8NFKD_H
00021 #define UTF8NFKD_H
00022
00023 #include <swfilter.h>
00024
00025 #include <unicode/utypes.h>
00026 #include <unicode/ucnv.h>
00027 #include <unicode/uchar.h>
00028 #include <unicode/unorm.h>
00029
00030 #include <defs.h>
00031
00032 class SWDLLEXPORT UTF8NFKD : public SWFilter
00033 {
00034 private:
00035 UConverter* conv;
00036 UChar *source, *target;
00037 UErrorCode err;
00038 public:
00039 UTF8NFKD();
00040 ~UTF8NFKD();
00041 virtual char ProcessText (char *text, int maxlen, const SWKey * key, const SWModule * = 0);
00042 };
00043
00044 #endif
00045
00046 #endif