mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-05 00:41:19 -05:00
896d75eb27
This reverts commit 8cf2fa7752
.
27 lines
682 B
C++
27 lines
682 B
C++
#ifndef WSJTX_LOGGING_HPP__
|
|
#define WSJTX_LOGGING_HPP__
|
|
|
|
#include <QtGlobal>
|
|
|
|
class QString;
|
|
|
|
//
|
|
// Class WSJTXLogging - wraps application specific logging
|
|
//
|
|
class WSJTXLogging final
|
|
{
|
|
public:
|
|
explicit WSJTXLogging ();
|
|
~WSJTXLogging ();
|
|
|
|
//
|
|
// Install this as the Qt message handler (qInstallMessageHandler)
|
|
// to integrate Qt messages. This handler can be installed at any
|
|
// time, it does not rely on an instance of WSJTXLogging existing,
|
|
// so logging occurring before the logging sinks, filters, and
|
|
// formatters, etc, are established can take place.
|
|
static void qt_log_handler (QtMsgType type, QMessageLogContext const& context, QString const&);
|
|
};
|
|
|
|
#endif
|