13 lines
297 B
C
13 lines
297 B
C
|
|
#pragma once
|
||
|
|
#include <string>
|
||
|
|
#include <mutex>
|
||
|
|
namespace zlog
|
||
|
|
{
|
||
|
|
static std::mutex _mutex;
|
||
|
|
static void Message(std::string info, bool logCondition);
|
||
|
|
static void Message(std::string info);
|
||
|
|
|
||
|
|
static void Exception(std::string info, bool logCondition);
|
||
|
|
static void Exception(std::string info);
|
||
|
|
}
|