Warning, file /office/calligra/filters/karbon/wmf/WmfImportDebug.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 Friedrich W. H. Kossebau <kossebau@kde.org>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-only
0005  */
0006 
0007 #ifndef WMFIMPORT_DEBUG_H
0008 #define WMFIMPORT_DEBUG_H
0009 
0010 #include <QDebug>
0011 #include <QLoggingCategory>
0012 
0013 
0014 extern const QLoggingCategory &WMFIMPORT_LOG();
0015 
0016 #define debugWmf qCDebug(WMFIMPORT_LOG)
0017 #define warnWmf qCWarning(WMFIMPORT_LOG)
0018 #define errorWmf qCCritical(WMFIMPORT_LOG)
0019 
0020 #endif