SineStriker
2023-12-11 fd8aca4a20f52f696aa239ead1baa20cea5879f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef QWKGLOBAL_P_H
#define QWKGLOBAL_P_H
 
#include <QtCore/QLoggingCategory>
 
#include <QWKCore/qwkcoreglobal.h>
 
QWK_CORE_EXPORT Q_DECLARE_LOGGING_CATEGORY(qWindowKitLog)
 
#define QWK_INFO     qCInfo(qWindowKitLog)
#define QWK_DEBUG    qCDebug(qWindowKitLog)
#define QWK_WARNING  qCWarning(qWindowKitLog)
#define QWK_CRITICAL qCCritical(qWindowKitLog)
#if QT_VERSION >= QT_VERSION_CHECK(6, 6, 0)
#  define QWK_FATAL qCFatal(qWindowKitLog)
#endif
 
#endif // QWKGLOBAL_P_H