#ifndef UTILS_HH #define UTILS_HH #include class Random { private: std::ifstream device; public: Random (); unsigned int rand(); int random_in_range(int, int); }; enum DebugLevel {INFO = 0, WARNING = 1, CRITICAL = 2}; const char DEBUGCHARS[] = {'I', 'W', 'C'}; void debug(DebugLevel, std::string); #endif