QmlProjectManager refactoring

Putting every class in it's own files + avoid "using namespace"
This commit is contained in:
Kai Koehne
2010-02-16 13:39:13 +01:00
parent 45efd5b5b1
commit fdd85b7f33
22 changed files with 1079 additions and 708 deletions

View File

@@ -32,6 +32,7 @@
#include "qmlproject.h"
#include <coreplugin/icore.h>
#include <coreplugin/ifile.h>
#include <coreplugin/uniqueidmanager.h>
#include <coreplugin/messagemanager.h>
#include <projectexplorer/projectexplorerconstants.h>
@@ -40,8 +41,8 @@
#include <QtDebug>
using namespace QmlProjectManager;
using namespace QmlProjectManager::Internal;
namespace QmlProjectManager {
namespace Internal {
Manager::Manager()
{
@@ -101,3 +102,6 @@ void Manager::notifyChanged(const QString &fileName)
}
}
}
} // namespace Internal
} // namespace QmlProjectManager