summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cppmodelmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cpptools/cppmodelmanager.h')
-rw-r--r--src/plugins/cpptools/cppmodelmanager.h18
1 files changed, 3 insertions, 15 deletions
diff --git a/src/plugins/cpptools/cppmodelmanager.h b/src/plugins/cpptools/cppmodelmanager.h
index 7936019a14..89caba186e 100644
--- a/src/plugins/cpptools/cppmodelmanager.h
+++ b/src/plugins/cpptools/cppmodelmanager.h
@@ -122,17 +122,9 @@ public:
virtual void setIndexingSupport(CppIndexingSupport *indexingSupport);
virtual CppIndexingSupport *indexingSupport();
- QStringList projectFiles()
- {
- ensureUpdated();
- return m_projectFiles;
- }
+ QStringList projectFiles();
- ProjectPart::HeaderPaths headerPaths()
- {
- ensureUpdated();
- return m_headerPaths;
- }
+ ProjectPart::HeaderPaths headerPaths();
// Use this *only* for auto tests
void setHeaderPaths(const ProjectPart::HeaderPaths &headerPaths)
@@ -140,11 +132,7 @@ public:
m_headerPaths = headerPaths;
}
- QByteArray definedMacros()
- {
- ensureUpdated();
- return m_definedMacros;
- }
+ QByteArray definedMacros();
void enableGarbageCollector(bool enable);