Welcome to mirror list, hosted at ThFree Co, Russian Federation.

null_sink.h « sinks « spdlog « include - github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68bd9c94da13591b5bd596c5c7a1c8f2ff9fb56f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//

#pragma once

#include <spdlog/sinks/base_sink.h>
#include <spdlog/details/null_mutex.h>

#include <mutex>

namespace spdlog
{
namespace sinks
{

template <class Mutex>
class null_sink : public base_sink < Mutex >
{
protected:
    void _sink_it(const details::log_msg&) override
    {}

    void flush() override
    {}

};
typedef null_sink<details::null_mutex> null_sink_st;
typedef null_sink<std::mutex> null_sink_mt;

}
}