1/* -*-c++-*- OpenSceneGraph - Copyright (C) 2008 Robert Osfield
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.
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.
14#ifndef OSGDB_CONVERTUTF
15#define OSGDB_CONVERTUTF 1
18#include <osgDB/Export>
22#if defined(__CYGWIN__) || defined(__ANDROID__)
25typedef basic_string<wchar_t> wstring;
32extern OSGDB_EXPORT std::string convertUTF16toUTF8(const wchar_t* source, unsigned sourceLength);
33extern OSGDB_EXPORT std::wstring convertUTF8toUTF16(const char* source, unsigned sourceLength);
35extern OSGDB_EXPORT std::string convertUTF16toUTF8(const std::wstring& s);
36extern OSGDB_EXPORT std::string convertUTF16toUTF8(const wchar_t* s);
38extern OSGDB_EXPORT std::wstring convertUTF8toUTF16(const std::string& s);
39extern OSGDB_EXPORT std::wstring convertUTF8toUTF16(const char* s);
41extern OSGDB_EXPORT std::string convertStringFromCurrentCodePageToUTF8(const char* source, unsigned sourceLength);
42extern OSGDB_EXPORT std::string convertStringFromUTF8toCurrentCodePage(const char* source, unsigned sourceLength);
44extern OSGDB_EXPORT std::string convertStringFromCurrentCodePageToUTF8(const std::string& s);
45extern OSGDB_EXPORT std::string convertStringFromCurrentCodePageToUTF8(const char* s);
47extern OSGDB_EXPORT std::string convertStringFromUTF8toCurrentCodePage(const std::string& s);
48extern OSGDB_EXPORT std::string convertStringFromUTF8toCurrentCodePage(const char* s);