| OLD | NEW |
| 1 /* | 1 /* |
| 2 ********************************************************************** | 2 ********************************************************************** |
| 3 * Copyright (C) 2005-2012, International Business Machines | 3 * Copyright (C) 2005-2012, International Business Machines |
| 4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
| 5 ********************************************************************** | 5 ********************************************************************** |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef __CSR2022_H | 8 #ifndef __CSR2022_H |
| 9 #define __CSR2022_H | 9 #define __CSR2022_H |
| 10 | 10 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 class CharsetRecog_2022JP :public CharsetRecog_2022 | 58 class CharsetRecog_2022JP :public CharsetRecog_2022 |
| 59 { | 59 { |
| 60 public: | 60 public: |
| 61 virtual ~CharsetRecog_2022JP(); | 61 virtual ~CharsetRecog_2022JP(); |
| 62 | 62 |
| 63 const char *getName() const; | 63 const char *getName() const; |
| 64 | 64 |
| 65 UBool match(InputText *textIn, CharsetMatch *results) const; | 65 UBool match(InputText *textIn, CharsetMatch *results) const; |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 #if !UCONFIG_NO_NON_HTML5_CONVERSION | |
| 69 class CharsetRecog_2022KR :public CharsetRecog_2022 { | 68 class CharsetRecog_2022KR :public CharsetRecog_2022 { |
| 70 public: | 69 public: |
| 71 virtual ~CharsetRecog_2022KR(); | 70 virtual ~CharsetRecog_2022KR(); |
| 72 | 71 |
| 73 const char *getName() const; | 72 const char *getName() const; |
| 74 | 73 |
| 75 UBool match(InputText *textIn, CharsetMatch *results) const; | 74 UBool match(InputText *textIn, CharsetMatch *results) const; |
| 76 | 75 |
| 77 }; | 76 }; |
| 78 | 77 |
| 79 class CharsetRecog_2022CN :public CharsetRecog_2022 | 78 class CharsetRecog_2022CN :public CharsetRecog_2022 |
| 80 { | 79 { |
| 81 public: | 80 public: |
| 82 virtual ~CharsetRecog_2022CN(); | 81 virtual ~CharsetRecog_2022CN(); |
| 83 | 82 |
| 84 const char* getName() const; | 83 const char* getName() const; |
| 85 | 84 |
| 86 UBool match(InputText *textIn, CharsetMatch *results) const; | 85 UBool match(InputText *textIn, CharsetMatch *results) const; |
| 87 }; | 86 }; |
| 88 #endif | |
| 89 | 87 |
| 90 U_NAMESPACE_END | 88 U_NAMESPACE_END |
| 91 | 89 |
| 92 #endif | 90 #endif |
| 93 #endif /* __CSR2022_H */ | 91 #endif /* __CSR2022_H */ |
| OLD | NEW |