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