ConvertUTF 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. #ifndef OSGDB_CONVERTUTF
  14. #define OSGDB_CONVERTUTF 1
  15. #include <osg/Config>
  16. #include <osgDB/Export>
  17. #include <string>
  18. #if defined(__CYGWIN__) || defined(__ANDROID__)
  19. namespace std
  20. {
  21. typedef basic_string<wchar_t> wstring;
  22. }
  23. #endif
  24. namespace osgDB
  25. {
  26. extern OSGDB_EXPORT std::string convertUTF16toUTF8(const wchar_t* source, unsigned sourceLength);
  27. extern OSGDB_EXPORT std::wstring convertUTF8toUTF16(const char* source, unsigned sourceLength);
  28. extern OSGDB_EXPORT std::string convertUTF16toUTF8(const std::wstring& s);
  29. extern OSGDB_EXPORT std::string convertUTF16toUTF8(const wchar_t* s);
  30. extern OSGDB_EXPORT std::wstring convertUTF8toUTF16(const std::string& s);
  31. extern OSGDB_EXPORT std::wstring convertUTF8toUTF16(const char* s);
  32. extern OSGDB_EXPORT std::string convertStringFromCurrentCodePageToUTF8(const char* source, unsigned sourceLength);
  33. extern OSGDB_EXPORT std::string convertStringFromUTF8toCurrentCodePage(const char* source, unsigned sourceLength);
  34. extern OSGDB_EXPORT std::string convertStringFromCurrentCodePageToUTF8(const std::string& s);
  35. extern OSGDB_EXPORT std::string convertStringFromCurrentCodePageToUTF8(const char* s);
  36. extern OSGDB_EXPORT std::string convertStringFromUTF8toCurrentCodePage(const std::string& s);
  37. extern OSGDB_EXPORT std::string convertStringFromUTF8toCurrentCodePage(const char* s);
  38. }
  39. #endif