Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qdbusxmlparser.cpp File Reference

(ee593cdde639872f3b3c1f0ff59ee3982002064e)

#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)
GLint GLsizei GLsizei GLenum format

Definition at line 28 of file qdbusxmlparser.cpp.

Referenced by QDBusXmlParser::QDBusXmlParser().

◆ 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 20 of file qdbusxmlparser.cpp.

Referenced by QDBusXmlParser::QDBusXmlParser().