/*** 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 GetFormatter() = 0; virtual void SetFormatter(const AuSPtr &pFormatter) = 0; }; }