source: opengl-game/logger.hpp

feature/imgui-sdl
Last change on this file was 1fcca9e, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 5 years ago

Rename logger.h to logger.hpp

  • Property mode set to 100644
File size: 347 bytes
Line 
1#ifndef LOGGER_H
2#define LOGGER_H
3
4#include <string>
5#include <fstream>
6
7using namespace std;
8
9#define GL_LOG_FILE "gl.log"
10#define LOG_FILE "game.log"
11
12extern ofstream ofs;
13
14bool restart_gl_log();
15bool gl_log(const string message, ...);
16bool gl_log_err(const string message, ...);
17
18void open_log();
19ofstream& get_log();
20void close_log();
21
22#endif
Note: See TracBrowser for help on using the repository browser.