mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 11:55:28 -04:00
8844642ae0
Added doxygen files. Cleaned some files.
20 lines
533 B
C++
20 lines
533 B
C++
/*
|
|
* Game Develop Core
|
|
* Copyright 2008-2014 Florian Rival (Florian.Rival@gmail.com). All rights reserved.
|
|
* This project is released under the GNU Lesser General Public License.
|
|
*/
|
|
|
|
#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 |