#ifndef FEATHERLOG_LOG_FORMATTER_HPP #define FEATHERLOG_LOG_FORMATTER_HPP #include namespace flog { class LogFormatter { public: virtual ~LogFormatter() = default; virtual std::string format() = 0; }; } #endif