|
Revision 9343, 1.3 kB
(checked in by robert, 4 years ago)
|
|
Where possible moved redundent C header includes from headers to source files
|
| Line | |
|---|
| 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 | #ifdef __CYGWIN__ |
|---|
| 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 | } |
|---|
| 42 | |
|---|
| 43 | #endif |
|---|