mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-25 04:15:49 -04:00
88ae518c45
git-svn-id: svn://localhost@682 8062f311-0dae-4547-b526-b8ab9ac864a5
19 lines
360 B
C++
19 lines
360 B
C++
/** \file
|
|
* Game Develop
|
|
* 2008-2012 Florian Rival (Florian.Rival@gmail.com)
|
|
*/
|
|
|
|
#include "GDCore/CommonTools.h"
|
|
#include <string>
|
|
#if defined(GD_IDE_ONLY)
|
|
#include <wx/string.h>
|
|
#endif
|
|
|
|
#if defined(GD_IDE_ONLY)
|
|
template<>
|
|
std::string GD_CORE_API gd::ToString( const wxString & value )
|
|
{
|
|
return std::string(value.mb_str());
|
|
}
|
|
#endif
|