diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-02-02 02:59:55 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-02-02 02:59:55 +0200 |
commit | 30ede65e73a18ed774ebd5671c4244fc763481d1 (patch) | |
tree | 51c841d17c3db16c7cda8f9f2e28c8520caa70cd /tmxcopy/tostring.h | |
parent | f36332ff10ab2eedac1138c7b2739b709f94173c (diff) | |
download | evol-tools-30ede65e73a18ed774ebd5671c4244fc763481d1.tar.gz evol-tools-30ede65e73a18ed774ebd5671c4244fc763481d1.tar.bz2 evol-tools-30ede65e73a18ed774ebd5671c4244fc763481d1.tar.xz evol-tools-30ede65e73a18ed774ebd5671c4244fc763481d1.zip |
Add moved tools from manaplus. http://www.gitorious.org/manaplus/
Diffstat (limited to 'tmxcopy/tostring.h')
-rw-r--r-- | tmxcopy/tostring.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tmxcopy/tostring.h b/tmxcopy/tostring.h new file mode 100644 index 0000000..63c0a1a --- /dev/null +++ b/tmxcopy/tostring.h @@ -0,0 +1,35 @@ +/* + * The Mana Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * + * This file is part of The Mana Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef UTILS_TOSTRING_H +#define UTILS_TOSTRING_H + +#include <sstream> + +template<typename T> +std::string toString(const T &arg) +{ + std::stringstream ss; + ss << arg; + return ss.str(); +} + +#endif |