mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-08-27 03:01:28 -04:00
830b533c6d
Binaries are now produced in a directory named with the build type and the os short name. Added all files that are not binaries.
19 lines
431 B
C++
19 lines
431 B
C++
/** \file
|
|
* Game Develop
|
|
* 2008-2014 Florian Rival (Florian.Rival@gmail.com)
|
|
*/
|
|
|
|
#include "GDCore/CommonTools.h"
|
|
#include <string>
|
|
#include <iostream>
|
|
#if defined(GD_IDE_ONLY) && !defined(GD_NO_WX_GUI)
|
|
#include <wx/string.h>
|
|
#endif
|
|
|
|
#if defined(GD_IDE_ONLY) && !defined(GD_NO_WX_GUI)
|
|
template<>
|
|
std::string GD_CORE_API gd::ToString( const wxString & value )
|
|
{
|
|
return std::string(value.mb_str());
|
|
}
|
|
#endif |