Krita Source Code Documentation
Loading...
Searching...
No Matches
StoreDebug.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 STORE_DEBUG_H_
7#define STORE_DEBUG_H_
8
9#include <QDebug>
10#include <QLoggingCategory>
11#include <kritastore_export.h>
12
13extern const KRITASTORE_EXPORT QLoggingCategory &STORE_LOG();
14
15#define debugStore qCDebug(STORE_LOG)
16#define warnStore qCWarning(STORE_LOG)
17#define errorStore qCCritical(STORE_LOG)
18
19#endif
const KRITASTORE_EXPORT QLoggingCategory & STORE_LOG()
Definition StoreDebug.cpp:9