You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/include/c11log/formatter.h

12 lines
145 B
C++

#pragma once
#include "details/log_msg.h"
namespace c11log
{
class formatter
{
public:
virtual void format(details::log_msg& msg) = 0;
};
}