paysages3d/src/system/Logs.h

29 lines
362 B
C
Raw Normal View History

#ifndef LOGS_H
#define LOGS_H
#include "system_global.h"
#include <iostream>
namespace paysages {
namespace system {
/**
* Logger streams
*/
class Logs
{
public:
static std::ostream &debug();
static std::ostream &warning();
static std::ostream &error();
// Disable all logs from now on
static void disable();
};
}
}
#endif // LOGS_H