summaryrefslogtreecommitdiff
path: root/src/plugins/boostbuildprojectmanager/b2projectnode.h
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-05-29 16:00:15 +0200
committerOrgad Shaneh <orgads@gmail.com>2015-07-01 10:43:12 +0000
commit29e86d5a3189cd9d9708327ce80441ecddb4600e (patch)
tree8423376707ce0f43f6abddc463569fa12bacd880 /src/plugins/boostbuildprojectmanager/b2projectnode.h
parent7389250fcd1ada74514f90e8670d7af087e6a7c7 (diff)
downloadqt-creator-29e86d5a3189cd9d9708327ce80441ecddb4600e.tar.gz
Move a bit closer to Qt Creator coding stylewip/boostbuildprojectmanager
- use m_member prefix convention - bind some * to the identifier - remove some unusual comments Change-Id: Ife9b148b54c3f930561e2de79a016dfcfe0487a0 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/boostbuildprojectmanager/b2projectnode.h')
-rw-r--r--src/plugins/boostbuildprojectmanager/b2projectnode.h17
1 files changed, 5 insertions, 12 deletions
diff --git a/src/plugins/boostbuildprojectmanager/b2projectnode.h b/src/plugins/boostbuildprojectmanager/b2projectnode.h
index 9a1e5422da..ba6d00d9d5 100644
--- a/src/plugins/boostbuildprojectmanager/b2projectnode.h
+++ b/src/plugins/boostbuildprojectmanager/b2projectnode.h
@@ -13,22 +13,17 @@
#ifndef BBPROJECTNODE_HPP
#define BBPROJECTNODE_HPP
-// Qt Creator
#include <projectexplorer/projectnodes.h>
-// Qt
+
#include <QFutureInterface>
#include <QList>
#include <QSet>
#include <QString>
#include <QStringList>
-namespace Core {
-class IDocument;
-}
+namespace Core { class IDocument; }
-namespace ProjectExplorer {
-class RunConfiguration;
-}
+namespace ProjectExplorer { class RunConfiguration; }
namespace BoostBuildProjectManager {
namespace Internal {
@@ -40,7 +35,6 @@ class Project;
// No special operations (addFiles(), removeFiles(), renameFile(), etc.) are offered.
class ProjectNode : public ProjectExplorer::ProjectNode
{
-
public:
ProjectNode(Project* project, Core::IDocument* projectFile);
@@ -58,7 +52,6 @@ public:
void refresh(QSet<QString> oldFileList);
private:
-
ProjectExplorer::FolderNode*
createFolderByName(QStringList const& components, int end);
@@ -67,8 +60,8 @@ private:
void removeEmptySubFolders(FolderNode* parent, FolderNode* subParent);
- Project* project_;
- Core::IDocument* projectFile_;
+ Project *m_project;
+ Core::IDocument *m_projectFile;
};
} // namespace Internal