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.
18 lines
192 B
C
18 lines
192 B
C
![]()
11 years ago
|
#pragma once
|
||
|
|
||
|
#include "../details/log_msg.h"
|
||
|
|
||
![]()
11 years ago
|
namespace spitlog
|
||
![]()
11 years ago
|
{
|
||
|
namespace sinks
|
||
|
{
|
||
![]()
11 years ago
|
class sink
|
||
![]()
11 years ago
|
{
|
||
|
public:
|
||
![]()
11 years ago
|
virtual ~sink() {}
|
||
![]()
11 years ago
|
virtual void log(const details::log_msg& msg) = 0;
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|