Files
GDevelop/Core/GDCore/CommonTools.cpp
T
Florian 40ad181a5f Updated copyright.
Improved handling of locked objects in LayoutEditorCanvas.

git-svn-id: svn://localhost@900 8062f311-0dae-4547-b526-b8ab9ac864a5
2013-01-17 21:11:40 +00:00

19 lines
360 B
C++

/** \file
* Game Develop
* 2008-2013 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