Files
FeatherLog/include/log_formatter.hpp
T
2026-08-17 10:02:18 +08:00

15 lines
252 B
C++

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