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