13 lines
149 B
C++
13 lines
149 B
C++
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
|
|
#ifndef NULL
|
|
#define NULL 0
|
|
#endif
|
|
|
|
#include <string>
|
|
#include <sstream>
|
|
|
|
std::string intToString(int theInt);
|
|
|
|
#endif |