Krita Source Code Documentation
Loading...
Searching...
No Matches
WidgetsDebug.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2015 Boudewijn Rempt <boud@valdyas.org>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6#ifndef WIDGETS_DEBUG_H_
7#define WIDGETS_DEBUG_H_
8
9#include <QDebug>
10#include <QLoggingCategory>
11#include <kritawidgets_export.h>
12
13extern const KRITAWIDGETS_EXPORT QLoggingCategory &WIDGETS_LOG();
14
15#define debugWidgets qCDebug(WIDGETS_LOG)
16#define warnWidgets qCWarning(WIDGETS_LOG)
17#define errorWidgets qCCritical(WIDGETS_LOG)
18
19#endif
const KRITAWIDGETS_EXPORT QLoggingCategory & WIDGETS_LOG()