Alkimia API

alkdebug.h
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2024 Ralf Habacker ralf.habacker @freenet.de
3
4 This file is part of libalkimia.
5
6 SPDX-License-Identifier: LGPL-2.1-or-later
7*/
8
9/**
10 * @file
11 * @brief Wrapper for debug output
12 */
13
14#ifndef ALKDEBUG_H
15#define ALKDEBUG_H
16
17#include <QtDebug>
18
19// we do not want to support qDebug
20#undef qDebug
21QDebug _alkDebug(const char *file, int line, const char *func);
22#define alkDebug() _alkDebug(__FILE__, __LINE__, Q_FUNC_INFO)
23
24#endif // ALKDEBUG_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Sat Dec 21 2024 17:01:13 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.