Files
FeatherLog/include/featherlog/log_formatter.hpp
T
2026-08-17 11:31:12 +08:00

18 lines
314 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