From 7389250fcd1ada74514f90e8670d7af087e6a7c7 Mon Sep 17 00:00:00 2001 From: Mateusz Loskot Date: Wed, 6 May 2015 00:16:58 +0200 Subject: Add Boost.Build Project Manager plug-in Preparing to contribute the plug-in, see the announcement at http://lists.qt-project.org/pipermail/qt-creator/2015-February/004436.html Change-Id: Ic3920c9b888af5bea1b7742b8ff49984c29a2909 Reviewed-by: Orgad Shaneh Reviewed-by: Eike Ziller Reviewed-by: Leena Miettinen Reviewed-by: hjk --- .../boostbuildprojectmanager/b2projectmanager.h | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 src/plugins/boostbuildprojectmanager/b2projectmanager.h (limited to 'src/plugins/boostbuildprojectmanager/b2projectmanager.h') diff --git a/src/plugins/boostbuildprojectmanager/b2projectmanager.h b/src/plugins/boostbuildprojectmanager/b2projectmanager.h new file mode 100644 index 0000000000..d4222beb61 --- /dev/null +++ b/src/plugins/boostbuildprojectmanager/b2projectmanager.h @@ -0,0 +1,54 @@ +// +// Copyright (C) 2013 Mateusz Łoskot +// +// This file is part of Qt Creator Boost.Build plugin project. +// +// This is free software; you can redistribute and/or modify it under +// the terms of the GNU Lesser General Public License, Version 2.1 +// as published by the Free Software Foundation. +// See accompanying file LICENSE.txt or copy at +// http://www.gnu.org/licenses/lgpl-2.1-standalone.html. +// +#ifndef BBPROJECTMANAGER_HPP +#define BBPROJECTMANAGER_HPP + +// Qt Creator +#include +// Qt +#include +#include + +namespace ProjectExplorer { +class Project; +} + +namespace BoostBuildProjectManager { +namespace Internal { + +class Project; + +// Sole implementation of the IProjectManager class for the extension. +class ProjectManager : public ProjectExplorer::IProjectManager +{ + Q_OBJECT + +public: + ProjectManager(); + + QString mimeType() const; + + // Creates new instance of Project class. + ProjectExplorer::Project* + openProject(QString const& fileName, QString* errorString); + + void registerProject(Project* project); + void unregisterProject(Project* project); + +private: + QList projects_; +}; + +} // namespace Internal +} // namespace BoostBuildProjectManager + +#endif // BBPROJECTMANAGER_HPP -- cgit v1.2.1