Files
FeatherLog/include/featherlog/log_formatter.hpp
T
2026-08-17 21:01:29 +08:00

19 lines
315 B
C++

#ifndef FEATHERLOG_LOG_FORMATTER_HPP
#define FEATHERLOG_LOG_FORMATTER_HPP
#include <string>
#include <featherlog/flog_definitions.h>
namespace flog
{
class FLOG_API LogFormatter
{
public:
virtual ~LogFormatter() = default;
virtual std::string FLOG_CALL format() = 0;
};
}
#endif