mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-16 08:55:46 +08:00
17 lines
169 B
C++
17 lines
169 B
C++
#pragma once
|
|
|
|
#include "../details/log_msg.h"
|
|
|
|
namespace c11log
|
|
{
|
|
namespace sinks
|
|
{
|
|
class isink
|
|
{
|
|
public:
|
|
virtual void log(const details::log_msg& msg) = 0;
|
|
};
|
|
}
|
|
}
|
|
|