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