Warning, file /graphics/krita/libs/store/StoreDebug.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002  *  SPDX-FileCopyrightText: 2015 Boudewijn Rempt <boud@valdyas.org>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 #ifndef STORE_DEBUG_H_
0007 #define STORE_DEBUG_H_
0008 
0009 #include <QDebug>
0010 #include <QLoggingCategory>
0011 #include <kritastore_export.h>
0012 
0013 extern const KRITASTORE_EXPORT QLoggingCategory &STORE_LOG();
0014 
0015 #define debugStore qCDebug(STORE_LOG)
0016 #define warnStore qCWarning(STORE_LOG)
0017 #define errorStore qCCritical(STORE_LOG)
0018 
0019 #endif