aboutsummaryrefslogtreecommitdiffstats
path: root/src/charset.h
diff options
context:
space:
mode:
authorStefan Pöschel <github@basicmaster.de>2017-02-11 01:15:53 +0100
committerStefan Pöschel <github@basicmaster.de>2017-02-11 01:15:53 +0100
commitb808b7bfecbee44527c4faa6f9cc16ed44b73a34 (patch)
tree3c9c1ac13d68501bdaa6845c7ee3019fc273dabb /src/charset.h
parentb18c8ea7c49f0e33f6fa5bd8ea467562cce260f1 (diff)
downloadODR-PadEnc-b808b7bfecbee44527c4faa6f9cc16ed44b73a34.tar.gz
ODR-PadEnc-b808b7bfecbee44527c4faa6f9cc16ed44b73a34.tar.bz2
ODR-PadEnc-b808b7bfecbee44527c4faa6f9cc16ed44b73a34.zip
Move charset to separate source file to prevent multi-include errors
Diffstat (limited to 'src/charset.h')
-rw-r--r--src/charset.h29
1 files changed, 1 insertions, 28 deletions
diff --git a/src/charset.h b/src/charset.h
index a31ca25..3b5f102 100644
--- a/src/charset.h
+++ b/src/charset.h
@@ -32,36 +32,9 @@
#include <vector>
#include <algorithm>
-/**********************************************/
-/************* BIG FAT WARNING ****************/
-/**********************************************/
-/**** Make sure this file is always saved ****/
-/**** encoded in UTF-8, otherwise you will ****/
-/**** mess up the table below ! ****/
-/**********************************************/
-/********* END OF BIG FAT WARNING *************/
-/**********************************************/
-
-
#define CHARSET_TABLE_OFFSET 1 // NUL at index 0 cannot be represented
#define CHARSET_TABLE_ENTRIES (256 - CHARSET_TABLE_OFFSET)
-const char* utf8_encoded_EBU_Latin[CHARSET_TABLE_ENTRIES] = {
- "Ę", "Į", "Ų", "Ă", "Ė", "Ď", "Ș", "Ț", "Ċ", "\n","\v","Ġ", "Ĺ", "Ż", "Ń",
-"ą", "ę", "į", "ų", "ă", "ė", "ď", "ș", "ț", "ċ", "Ň", "Ě", "ġ", "ĺ", "ż", "\u0082",
-" ", "!", "\"","#", "ł", "%", "&", "'", "(", ")", "*", "+", ",", "-", ".", "/",
-"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", ";", "<", "=", ">", "?",
-"@", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O",
-"P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "[", "Ů", "]", "Ł", "_",
-"Ą", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o",
-"p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "«", "ů", "»", "Ľ", "Ħ",
-"á", "à", "é", "è", "í", "ì", "ó", "ò", "ú", "ù", "Ñ", "Ç", "Ş", "ß", "¡", "Ÿ",
-"â", "ä", "ê", "ë", "î", "ï", "ô", "ö", "û", "ü", "ñ", "ç", "ş", "ğ", "ı", "ÿ",
-"Ķ", "Ņ", "©", "Ģ", "Ğ", "ě", "ň", "ő", "Ő", "€", "£", "$", "Ā", "Ē", "Ī", "Ū",
-"ķ", "ņ", "Ļ", "ģ", "ļ", "İ", "ń", "ű", "Ű", "¿", "ľ", "°", "ā", "ē", "ī", "ū",
-"Á", "À", "É", "È", "Í", "Ì", "Ó", "Ò", "Ú", "Ù", "Ř", "Č", "Š", "Ž", "Ð", "Ŀ",
-"Â", "Ä", "Ê", "Ë", "Î", "Ï", "Ô", "Ö", "Û", "Ü", "ř", "č", "š", "ž", "đ", "ŀ",
-"Ã", "Å", "Æ", "Œ", "ŷ", "Ý", "Õ", "Ø", "Þ", "Ŋ", "Ŕ", "Ć", "Ś", "Ź", "Ť", "ð",
-"ã", "å", "æ", "œ", "ŵ", "ý", "õ", "ø", "þ", "ŋ", "ŕ", "ć", "ś", "ź", "ť", "ħ"};
+extern const char* utf8_encoded_EBU_Latin[CHARSET_TABLE_ENTRIES];
class CharsetConverter
{