17 lines
379 B
C++
17 lines
379 B
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: IFormatterContainer.hpp
|
||
|
Date: 2022-11-14
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::Logging
|
||
|
{
|
||
|
struct IFormatterContainer
|
||
|
{
|
||
|
virtual AuSPtr<IFormatter> GetFormatter() = 0;
|
||
|
virtual void SetFormatter(const AuSPtr<IFormatter> &pFormatter) = 0;
|
||
|
};
|
||
|
}
|