22 lines
493 B
C++
22 lines
493 B
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: AuFormatterContainer.cpp
|
||
|
Date: 2022-11-14
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#include <RuntimeInternal.hpp>
|
||
|
#include "AuFormatterContainer.hpp"
|
||
|
|
||
|
namespace Aurora::Logging
|
||
|
{
|
||
|
AuSPtr<IFormatter> FormatterContainer::GetFormatter()
|
||
|
{
|
||
|
return this->pFormatter;
|
||
|
}
|
||
|
|
||
|
void FormatterContainer::SetFormatter(const AuSPtr<IFormatter> &pFormatter)
|
||
|
{
|
||
|
this->pFormatter = pFormatter;
|
||
|
}
|
||
|
}
|