SHA256
17 lines
311 B
C++
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
|