init
This commit is contained in:
commit
f698a38c7e
585 changed files with 118338 additions and 0 deletions
11
SimpleGame/src_original/Include/StringHelpers.hpp
Normal file
11
SimpleGame/src_original/Include/StringHelpers.hpp
Normal file
|
@ -0,0 +1,11 @@
|
|||
#ifndef BOOK_STRINGHELPERS_HPP
|
||||
#define BOOK_STRINGHELPERS_HPP
|
||||
|
||||
#include <sstream>
|
||||
|
||||
// Since std::to_string doesn't work on MinGW we have to implement
|
||||
// our own to support all platforms.
|
||||
template <typename T> std::string toString(const T &value);
|
||||
|
||||
#include "StringHelpers.inl"
|
||||
#endif // BOOK_STRINGHELPERS_HPP
|
Loading…
Add table
Add a link
Reference in a new issue