diff options
Diffstat (limited to 'src/plugins/cpptools/cppmodelmanager.cpp')
-rw-r--r-- | src/plugins/cpptools/cppmodelmanager.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/cpptools/cppmodelmanager.cpp b/src/plugins/cpptools/cppmodelmanager.cpp index 508bf76be4..ed9042b001 100644 --- a/src/plugins/cpptools/cppmodelmanager.cpp +++ b/src/plugins/cpptools/cppmodelmanager.cpp @@ -26,6 +26,7 @@ #include "cppmodelmanager.h" #include "abstracteditorsupport.h" +#include "abstractoverviewmodel.h" #include "baseeditordocumentprocessor.h" #include "builtinindexingsupport.h" #include "cppclassesfilter.h" @@ -400,6 +401,11 @@ FollowSymbolInterface &CppModelManager::followSymbolInterface() const return d->m_activeModelManagerSupport->followSymbolInterface(); } +std::unique_ptr<AbstractOverviewModel> CppModelManager::createOverviewModel() const +{ + return d->m_activeModelManagerSupport->createOverviewModel(); +} + QString CppModelManager::configurationFileName() { return Preprocessor::configurationFileName(); |