Qt 6.x
The Qt SDK
Loading...
Searching...
No Matches
qdbusxmlparser.cpp File Reference
#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.

◆ 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.