mirror of
https://github.com/gabime/spdlog.git
synced 2026-04-10 11:34:29 +08:00
1. renamed lib to to spitlog
2. Rotating bugfix
This commit is contained in:
17
include/spitlog/sinks/sink.h
Normal file
17
include/spitlog/sinks/sink.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#include "../details/log_msg.h"
|
||||
|
||||
namespace spitlog
|
||||
{
|
||||
namespace sinks
|
||||
{
|
||||
class sink
|
||||
{
|
||||
public:
|
||||
virtual ~sink() {}
|
||||
virtual void log(const details::log_msg& msg) = 0;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user