9 lines
113 B
C
9 lines
113 B
C
|
|
#ifndef UTIL_H
|
||
|
|
#define UTIL_H
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
#include <sstream>
|
||
|
|
|
||
|
|
std::string intToString(int theInt);
|
||
|
|
|
||
|
|
#endif
|