SHA256
18 lines
263 B
C++
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 |