diff options
Diffstat (limited to 'src/plugins/projectexplorer/pluginfilefactory.h')
-rw-r--r-- | src/plugins/projectexplorer/pluginfilefactory.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/pluginfilefactory.h b/src/plugins/projectexplorer/pluginfilefactory.h index 59bd84cf8b..66eee7f5f3 100644 --- a/src/plugins/projectexplorer/pluginfilefactory.h +++ b/src/plugins/projectexplorer/pluginfilefactory.h @@ -53,14 +53,15 @@ class ProjectFileFactory : public Core::IFileFactory public: virtual QStringList mimeTypes() const; bool canOpen(const QString &fileName); - QString kind() const; + QString id() const; + QString displayName() const; + Core::IFile *open(const QString &fileName); static QList<ProjectFileFactory*> createFactories(QString *filterString); private: const QStringList m_mimeTypes; - const QString m_kind; ProjectExplorer::IProjectManager *m_manager; }; |