diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2007-11-21 12:29:46 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2007-11-21 12:29:46 +0000 |
commit | 952d69f85d43b087ce9fa79d3fc6f1c076000bc7 (patch) | |
tree | dd6937a6486e80e1638618308481075efab000ae /Build/source/libs/icu-xetex/i18n/csmatch.cpp | |
parent | 888236cb9df7b7d7b5a3e2d784037a9a59511c53 (diff) |
updated icu-xetex library for XeTeX 0.997
git-svn-id: svn://tug.org/texlive/trunk@5536 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu-xetex/i18n/csmatch.cpp')
-rw-r--r-- | Build/source/libs/icu-xetex/i18n/csmatch.cpp | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/Build/source/libs/icu-xetex/i18n/csmatch.cpp b/Build/source/libs/icu-xetex/i18n/csmatch.cpp new file mode 100644 index 00000000000..f1d25d2dde9 --- /dev/null +++ b/Build/source/libs/icu-xetex/i18n/csmatch.cpp @@ -0,0 +1,61 @@ +/* + ********************************************************************** + * Copyright (C) 2005-2006, International Business Machines + * Corporation and others. All Rights Reserved. + ********************************************************************** + */ + +#include "unicode/utypes.h" + +#if !UCONFIG_NO_CONVERSION +#include "unicode/unistr.h" +#include "unicode/ucnv.h" + +#include "csmatch.h" + +#include "csrecog.h" +#include "inputext.h" + +U_NAMESPACE_BEGIN + +CharsetMatch::CharsetMatch() + : csr(0), confidence(0) +{ + // nothing else to do. +} + +void CharsetMatch::set(InputText *input, CharsetRecognizer *cr, int32_t conf) +{ + textIn = input; + csr = cr; + confidence = conf; +} + +const char* CharsetMatch::getName()const +{ + return csr->getName(); +} + +const char* CharsetMatch::getLanguage()const +{ + return csr->getLanguage(); +} + +int32_t CharsetMatch::getConfidence()const +{ + return confidence; +} + +int32_t CharsetMatch::getUChars(UChar *buf, int32_t cap, UErrorCode *status) const +{ + UConverter *conv = ucnv_open(getName(), status); + int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status); + + ucnv_close(conv); + + return result; +} + +U_NAMESPACE_END + +#endif |