mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
17 lines
No EOL
282 B
C++
17 lines
No EOL
282 B
C++
#pragma once
|
|
|
|
#include <mutex>
|
|
#include "logger.h"
|
|
|
|
namespace satdump
|
|
{
|
|
class NotifyLoggerSink : public slog::LoggerSink
|
|
{
|
|
public:
|
|
NotifyLoggerSink();
|
|
~NotifyLoggerSink();
|
|
void receive(slog::LogMsg log);
|
|
|
|
std::mutex notify_mutex;
|
|
};
|
|
} |