Files
GDevelop/Core/GDCore/CommonTools.cpp
T
Florian Rival 830b533c6d Updated GDCore which was not up-to-date.
Binaries are now produced in a directory named with the build type and the os short name.
Added all files that are not binaries.
2014-04-01 00:19:58 +02:00

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