OSG  3.4.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ConvertUTF.h
Go to the documentation of this file.
1 /* -*-c++-*- OpenSceneGraph - Copyright (C) 2008 Robert Osfield
2  *
3  * This library is open source and may be redistributed and/or modified under
4  * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
5  * (at your option) any later version. The full license is in LICENSE file
6  * included with this distribution, and on the openscenegraph.org website.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * OpenSceneGraph Public License for more details.
12 */
13 
14 #ifndef OSGDB_CONVERTUTF
15 #define OSGDB_CONVERTUTF 1
16 
17 #include <osg/Config>
18 #include <osgDB/Export>
19 
20 #include <string>
21 
22 #if defined(__CYGWIN__) || defined(__ANDROID__)
23 namespace std
24 {
25 typedef basic_string<wchar_t> wstring;
26 }
27 #endif
28 
29 namespace osgDB
30 {
31 
32 extern OSGDB_EXPORT std::string convertUTF16toUTF8(const wchar_t* source, unsigned sourceLength);
33 extern OSGDB_EXPORT std::wstring convertUTF8toUTF16(const char* source, unsigned sourceLength);
34 
35 extern OSGDB_EXPORT std::string convertUTF16toUTF8(const std::wstring& s);
36 extern OSGDB_EXPORT std::string convertUTF16toUTF8(const wchar_t* s);
37 
38 extern OSGDB_EXPORT std::wstring convertUTF8toUTF16(const std::string& s);
39 extern OSGDB_EXPORT std::wstring convertUTF8toUTF16(const char* s);
40 
41 extern OSGDB_EXPORT std::string convertStringFromCurrentCodePageToUTF8(const char* source, unsigned sourceLength);
42 extern OSGDB_EXPORT std::string convertStringFromUTF8toCurrentCodePage(const char* source, unsigned sourceLength);
43 
44 extern OSGDB_EXPORT std::string convertStringFromCurrentCodePageToUTF8(const std::string& s);
45 extern OSGDB_EXPORT std::string convertStringFromCurrentCodePageToUTF8(const char* s);
46 
47 extern OSGDB_EXPORT std::string convertStringFromUTF8toCurrentCodePage(const std::string& s);
48 extern OSGDB_EXPORT std::string convertStringFromUTF8toCurrentCodePage(const char* s);
49 
50 }
51 
52 #endif
OSGDB_EXPORT std::string convertUTF16toUTF8(const wchar_t *source, unsigned sourceLength)
Definition: Archive.h:24
#define OSGDB_EXPORT
Definition: Export.h:39
OSGDB_EXPORT std::string convertStringFromCurrentCodePageToUTF8(const char *source, unsigned sourceLength)
OSGDB_EXPORT std::string convertStringFromUTF8toCurrentCodePage(const char *source, unsigned sourceLength)
OSGDB_EXPORT std::wstring convertUTF8toUTF16(const char *source, unsigned sourceLength)