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
RevLine 
[22b2c37]1#ifndef LOGGER_H
2#define LOGGER_H
3
[bae0911]4#include <string>
[98f06d9]5#include <fstream>
[bae0911]6
7using namespace std;
8
[22b2c37]9#define GL_LOG_FILE "gl.log"
[98f06d9]10#define LOG_FILE "game.log"
11
12extern ofstream ofs;
[22b2c37]13
14bool restart_gl_log();
[bae0911]15bool gl_log(const string message, ...);
16bool gl_log_err(const string message, ...);
[22b2c37]17
[98f06d9]18void open_log();
19ofstream& get_log();
20void close_log();
21
[22b2c37]22#endif
Note: See TracBrowser for help on using the repository browser.