Initialize defines and includePaths

This commit is contained in:
Roberto Raggi
2009-03-12 15:28:33 +01:00
parent 4e6428bbd5
commit f167218d13
2 changed files with 14 additions and 5 deletions

View File

@@ -41,6 +41,10 @@
#include <coreplugin/ifile.h>
#include <utils/pathchooser.h>
QT_BEGIN_NAMESPACE
class QStringListModel;
QT_END_NAMESPACE
namespace GenericProjectManager {
namespace Internal{
@@ -84,7 +88,6 @@ public:
QStringList files() const;
QStringList generated() const;
QStringList defines() const;
QString toolChainId() const;
public Q_SLOTS:
@@ -158,6 +161,8 @@ private:
GenericProject *_project;
Core::Utils::PathChooser *_pathChooser;
QString _buildConfiguration;
QStringListModel *_includePathsModel;
QStringListModel *_definesModel;
};
} // namespace Internal