00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef skENCODINGUTILS_H
00023 #define skENCODINGUTILS_H
00024
00025 #include "skString.h"
00026 #ifdef UNICODE_STRINGS
00027 #include "skAsciiString.h"
00028 #endif
00029
00030 class CLASSEXPORT skEncodingUtils
00031 {
00032 public:
00033 enum Encoding { ASCII, LE_UNICODE,BE_UNICODE };
00034 static int toLocalEncoding(char c);
00035 static int toLocalEncoding(wchar_t c,Encoding encoding);
00036 static char toAscii(wchar_t c,Encoding encoding);
00037 static wchar_t toUnicode(char c,Encoding encoding);
00038 #ifdef UNICODE_STRINGS
00039 static skAsciiString toAscii(const skString& s);
00040 static skString fromAscii(const skAsciiString& s);
00041 #endif
00042 };
00043
00044
00045
00046 #endif