AuroraRuntime/Include/Aurora/Logging/IFormatter.hpp
Reece 85a575eb95 [+] Network interfaces API
[+] Logger IFormatter API
[*] Clean up
2022-12-14 20:08:52 +00:00

15 lines
325 B
C++

/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: IFormatter.hpp
Date: 2022-11-14
Author: Reece
***/
#pragma once
namespace Aurora::Logging
{
AUKN_INTERFACE(IFormatter,
AUI_METHOD(AuString, Format, (AuUInt8, level, const Console::ConsoleMessage &, msg))
);
}