summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/projectnodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/projectnodes.h')
-rw-r--r--src/plugins/projectexplorer/projectnodes.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/plugins/projectexplorer/projectnodes.h b/src/plugins/projectexplorer/projectnodes.h
index 547bb83d82..1ea49a39aa 100644
--- a/src/plugins/projectexplorer/projectnodes.h
+++ b/src/plugins/projectexplorer/projectnodes.h
@@ -173,6 +173,11 @@ public:
FileNode *findFile(const QString &path);
FolderNode *findSubFolder(const QString &path);
+ virtual bool addFiles(const QStringList &filePaths, QStringList *notAdded = 0);
+ virtual bool removeFiles(const QStringList &filePaths, QStringList *notRemoved = 0);
+ virtual bool deleteFiles(const QStringList &filePaths);
+ virtual bool renameFile(const QString &filePath, const QString &newFilePath);
+
protected:
QList<FolderNode*> m_subFolderNodes;
QList<FileNode*> m_fileNodes;
@@ -219,10 +224,6 @@ public:
virtual bool removeSubProjects(const QStringList &proFilePaths) = 0;
- virtual bool addFiles(const QStringList &filePaths, QStringList *notAdded = 0) = 0;
- virtual bool removeFiles(const QStringList &filePaths, QStringList *notRemoved = 0) = 0;
- virtual bool deleteFiles(const QStringList &filePaths) = 0;
- virtual bool renameFile(const QString &filePath, const QString &newFilePath) = 0;
// by default returns false
virtual bool deploysFolder(const QString &folder) const;