Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
michael@0 | 1 | /* |
michael@0 | 2 | ********************************************************************** |
michael@0 | 3 | * Copyright (C) 2005-2012, International Business Machines |
michael@0 | 4 | * Corporation and others. All Rights Reserved. |
michael@0 | 5 | ********************************************************************** |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | #ifndef __CSRUTF8_H |
michael@0 | 9 | #define __CSRUTF8_H |
michael@0 | 10 | |
michael@0 | 11 | #include "unicode/utypes.h" |
michael@0 | 12 | |
michael@0 | 13 | #if !UCONFIG_NO_CONVERSION |
michael@0 | 14 | |
michael@0 | 15 | #include "csrecog.h" |
michael@0 | 16 | |
michael@0 | 17 | U_NAMESPACE_BEGIN |
michael@0 | 18 | |
michael@0 | 19 | /** |
michael@0 | 20 | * Charset recognizer for UTF-8 |
michael@0 | 21 | * |
michael@0 | 22 | * @internal |
michael@0 | 23 | */ |
michael@0 | 24 | class CharsetRecog_UTF8: public CharsetRecognizer { |
michael@0 | 25 | |
michael@0 | 26 | public: |
michael@0 | 27 | |
michael@0 | 28 | virtual ~CharsetRecog_UTF8(); |
michael@0 | 29 | |
michael@0 | 30 | const char *getName() const; |
michael@0 | 31 | |
michael@0 | 32 | /* (non-Javadoc) |
michael@0 | 33 | * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector) |
michael@0 | 34 | */ |
michael@0 | 35 | UBool match(InputText *input, CharsetMatch *results) const; |
michael@0 | 36 | |
michael@0 | 37 | }; |
michael@0 | 38 | |
michael@0 | 39 | U_NAMESPACE_END |
michael@0 | 40 | |
michael@0 | 41 | #endif |
michael@0 | 42 | #endif /* __CSRUTF8_H */ |