15 lines
325 B
C++
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))
|
||
|
);
|
||
|
}
|