From 46bed8d09f32360377350d71816a76abdfbf2c7c Mon Sep 17 00:00:00 2001 From: BobTheBob <32057864+BobTheBob9@users.noreply.github.com> Date: Wed, 24 Aug 2022 00:32:31 +0100 Subject: Adjust folder structure (#242) * Adjust folder structure * change launcher directory name --- NorthstarDLL/include/spdlog/formatter.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 NorthstarDLL/include/spdlog/formatter.h (limited to 'NorthstarDLL/include/spdlog/formatter.h') diff --git a/NorthstarDLL/include/spdlog/formatter.h b/NorthstarDLL/include/spdlog/formatter.h new file mode 100644 index 00000000..5086fb21 --- /dev/null +++ b/NorthstarDLL/include/spdlog/formatter.h @@ -0,0 +1,18 @@ +// Copyright(c) 2015-present, Gabi Melman & spdlog contributors. +// Distributed under the MIT License (http://opensource.org/licenses/MIT) + +#pragma once + +#include +#include + +namespace spdlog { + +class formatter +{ +public: + virtual ~formatter() = default; + virtual void format(const details::log_msg &msg, memory_buf_t &dest) = 0; + virtual std::unique_ptr clone() const = 0; +}; +} // namespace spdlog -- cgit v1.2.3