DocumentationProject: StringConversion was easy
This commit is contained in:
parent
e83a5a003e
commit
af43023732
@ -1,6 +1,8 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
/* Easy way of converting an int to a string without writing 5 lines of code every time you want to do it. */
|
||||||
std::string int_to_string(const int& value);
|
std::string int_to_string(const int& value);
|
||||||
|
|
||||||
|
/* Easy way of converting a float to a string without writing 5 lines of code every time you want to do it. */
|
||||||
std::string float_to_string(const float& value);
|
std::string float_to_string(const float& value);
|
Loading…
Reference in New Issue
Block a user