mirror of https://github.com/gabime/spdlog.git
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.
19 lines
226 B
C
19 lines
226 B
C
![]()
11 years ago
|
#pragma once
|
||
|
|
||
|
#include <mutex>
|
||
|
#include <memory>
|
||
|
#include "base_sink.h"
|
||
|
|
||
|
namespace c11log {
|
||
|
namespace sinks {
|
||
|
class null_sink : public base_sink
|
||
|
{
|
||
|
protected:
|
||
|
void _sink_it(const details::log_msg&) override
|
||
|
{}
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|