blob: 5f000d944e597922df81677af5742574d8b34b7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#pragma once
#ifdef CRU_PLATFORM_WINDOWS
#include "WinPreConfig.h"
#include "../../log/Logger.h"
namespace cru::platform::win {
class CRU_BASE_API WinDebugLogTarget : public ::cru::log::ILogTarget {
public:
WinDebugLogTarget() = default;
CRU_DELETE_COPY(WinDebugLogTarget)
CRU_DELETE_MOVE(WinDebugLogTarget)
~WinDebugLogTarget() = default;
void Write(::cru::log::LogLevel level, StringView s) override;
};
} // namespace cru::platform::win
#endif
|