Introduced editors for .files and .includes files.

This commit is contained in:
Roberto Raggi
2009-03-16 11:08:07 +01:00
parent 8c83a8f7f2
commit 7c537a81ff
12 changed files with 366 additions and 11 deletions

View File

@@ -35,6 +35,8 @@
namespace GenericProjectManager {
namespace Internal {
class GenericProject;
class Manager: public ProjectExplorer::IProjectManager
{
Q_OBJECT
@@ -49,9 +51,15 @@ public:
virtual QString mimeType() const;
virtual ProjectExplorer::Project *openProject(const QString &fileName);
void notifyChanged(const QString &fileName);
void registerProject(GenericProject *project);
void unregisterProject(GenericProject *project);
private:
int _projectContext;
int _projectLanguage;
QList<GenericProject *> _projects;
};
} // namespace Internal