#ifndef LOGGER_H #define LOGGER_H #include using namespace std; #define GL_LOG_FILE "gl.log" bool restart_gl_log(); bool gl_log(const string message, ...); bool gl_log_err(const string message, ...); #endif