14 lines
167 B
C
14 lines
167 B
C
|
#ifndef STRINGUTILS_H
|
||
|
#define STRINGUTILS_H
|
||
|
|
||
|
#include <string>
|
||
|
#include <cmath>
|
||
|
|
||
|
namespace StringUtils{
|
||
|
|
||
|
std::string toString(float val);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // STRINGUTILS_H
|