Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LOG.hxx File Reference
#include <string>
#include "Exception.hxx"
#include <iostream>
#include <chrono>
#include <ctime>
#include <fstream>
#include <sstream>
#include <SDL.h>
#include <algorithm>
#include <mutex>
#include "Meta.hxx"
#include "LOG.inl.hxx"
+ Include dependency graph for LOG.hxx:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  LOG
 

Typedefs

using Mutex = std::mutex
 
using LockGuard = std::lock_guard< Mutex >
 

Enumerations

enum  LogType {
  LOG_INFO = 0, LOG_DEBUG, LOG_WARNING, LOG_ERROR,
  LOG_FATAL
}
 

Typedef Documentation

◆ LockGuard

using LockGuard = std::lock_guard<Mutex>

Definition at line 21 of file LOG.hxx.

◆ Mutex

using Mutex = std::mutex

Definition at line 20 of file LOG.hxx.

Enumeration Type Documentation

◆ LogType

enum LogType
Enumerator
LOG_INFO 
LOG_DEBUG 
LOG_WARNING 
LOG_ERROR 
LOG_FATAL 

Definition at line 23 of file LOG.hxx.

24 {
25  LOG_INFO = 0,
26  LOG_DEBUG,
28  LOG_ERROR,
29  LOG_FATAL,
30 };
LOG_FATAL
@ LOG_FATAL
Definition: LOG.hxx:29
LOG_INFO
@ LOG_INFO
Definition: LOG.hxx:25
LOG_ERROR
@ LOG_ERROR
Definition: LOG.hxx:28
LOG_DEBUG
@ LOG_DEBUG
Definition: LOG.hxx:26
LOG_WARNING
@ LOG_WARNING
Definition: LOG.hxx:27