summaryrefslogtreecommitdiffstats
path: root/src/tools/moc/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/moc/parser.h')
-rw-r--r--src/tools/moc/parser.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tools/moc/parser.h b/src/tools/moc/parser.h
index 1d69e6472f..654168fb08 100644
--- a/src/tools/moc/parser.h
+++ b/src/tools/moc/parser.h
@@ -56,6 +56,15 @@ public:
bool displayWarnings;
bool displayNotes;
+ struct IncludePath
+ {
+ inline explicit IncludePath(const QByteArray &_path)
+ : path(_path), isFrameworkPath(false) {}
+ QByteArray path;
+ bool isFrameworkPath;
+ };
+ QList<IncludePath> includes;
+
QStack<QByteArray> currentFilenames;
inline bool hasNext() const { return (index < symbols.size()); }