Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qdbusxmlparser.cpp File Reference

(4f1377e599b85c132df6b00acebe02342d85155f)

#include "qdbusxmlparser_p.h"
#include "qdbusutil_p.h"
#include <QtCore/qmap.h>
#include <QtCore/qvariant.h>
#include <QtCore/qtextstream.h>
#include <QtCore/qdebug.h>
Include dependency graph for qdbusxmlparser.cpp:

Go to the source code of this file.

Macros

#define qDBusParserWarning(format, ...)
#define qDBusParserError(format, ...)

Macro Definition Documentation

◆ qDBusParserError

#define qDBusParserError ( format,
... )
Value:
do { \
if (m_reporter) \
m_reporter->error(m_currentLocation, format "\n", ##__VA_ARGS__); \
else \
qCDebug(dbusParser, "Error: " format, ##__VA_ARGS__); \
} while (0)
EGLint EGLint EGLint format

Definition at line 29 of file qdbusxmlparser.cpp.

◆ qDBusParserWarning

#define qDBusParserWarning ( format,
... )
Value:
do { \
if (m_reporter) \
m_reporter->warning(m_currentLocation, format "\n", ##__VA_ARGS__); \
else \
qCDebug(dbusParser, "Warning: " format, ##__VA_ARGS__); \
} while (0)

Definition at line 21 of file qdbusxmlparser.cpp.