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.
38 lines
587 B
C++
38 lines
587 B
C++
#pragma once
|
|
|
|
#include <iostream>
|
|
#include "base_sink.h"
|
|
|
|
namespace c11log
|
|
{
|
|
namespace sinks
|
|
{
|
|
class ostream_sink: public base_sink
|
|
{
|
|
public:
|
|
ostream_sink(std::ostream& os):_ostream(os) {}
|
|
virtual ~ostream_sink() = default;
|
|
|
|
protected:
|
|
virtual void sink_it_(const std::string& msg) override
|
|
{
|
|
_ostream << msg;
|
|
}
|
|
|
|
std::ostream& _ostream;
|
|
};
|
|
|
|
class stdout_sink:public ostream_sink
|
|
{
|
|
public:
|
|
stdout_sink():ostream_sink(std::cout) {}
|
|
};
|
|
|
|
class stderr_sink:public ostream_sink
|
|
{
|
|
public:
|
|
stderr_sink():ostream_sink(std::cerr) {}
|
|
|
|
};
|
|
}
|
|
} |