2018-03-11 07:57:57 +00:00
|
|
|
#ifndef STRINGUTILS_H
|
|
|
|
#define STRINGUTILS_H
|
|
|
|
|
|
|
|
#include <string>
|
2018-03-30 10:29:10 +00:00
|
|
|
#include <vector>
|
2018-03-11 07:57:57 +00:00
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
namespace StringUtils{
|
|
|
|
|
|
|
|
std::string toString(float val);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // STRINGUTILS_H
|