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

18 lines
263 B
C++

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