Files
FeatherLog/include/featherlog/log_formatter.hpp
T
2026-08-17 13:35:14 +08:00

17 lines
311 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