Files
GDevelop/Core/GDCore/CommonTools.cpp
T
Florian 88ae518c45 Achieved to get an independent library. Contains for now all classes related to events definition and rendering.
git-svn-id: svn://localhost@682 8062f311-0dae-4547-b526-b8ab9ac864a5
2012-03-17 17:47:28 +00:00

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