ProjectPart: Add meta information

Add displayname and project file path and a pointer back to the
project.

Change-Id: Ic9a18f52a6291493bd3a95fd3456ed0e1a3c63e3
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
This commit is contained in:
Daniel Teske
2013-09-30 15:59:49 +02:00
committed by Erik Verbruggen
parent fe62ad287f
commit e462c9620d
7 changed files with 24 additions and 1 deletions

View File

@@ -100,12 +100,14 @@ using namespace ProjectExplorer;
*/
ProjectPart::ProjectPart()
: cVersion(C89)
: project(0)
, cVersion(C89)
, cxxVersion(CXX11)
, cxxExtensions(NoExtensions)
, qtVersion(UnknownQt)
, cWarningFlags(ProjectExplorer::ToolChain::WarningsDefault)
, cxxWarningFlags(ProjectExplorer::ToolChain::WarningsDefault)
{
}

View File

@@ -102,6 +102,9 @@ public:
typedef QSharedPointer<ProjectPart> Ptr;
public:
QString displayName;
QString projectFile;
ProjectExplorer::Project *project;
QList<ProjectFile> files;
QByteArray defines;
QStringList includePaths;