diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2011-03-25 09:21:00 +0100 |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2011-03-25 09:21:00 +0100 |
commit | ac61c9a91885f373d021c15a6279cd81d64bbbf5 (patch) | |
tree | 2bdc9c7dfe8dc933da4dfaa78ffb55c71cfd1d01 /src/plugins/qmlprofiler/qmlprofilertool.h | |
parent | 76a5abf602fe910fd32c42638da77fd94bbed1c7 (diff) | |
download | qt-creator-ac61c9a91885f373d021c15a6279cd81d64bbbf5.tar.gz |
QmlProfiler: Namespace fixes
Use own namespace (QmlProfiler) instead of Analyzer.
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilertool.h')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilertool.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilertool.h b/src/plugins/qmlprofiler/qmlprofilertool.h index 19c3a7ce33..9384733719 100644 --- a/src/plugins/qmlprofiler/qmlprofilertool.h +++ b/src/plugins/qmlprofiler/qmlprofilertool.h @@ -1,13 +1,13 @@ #ifndef QMLPROFILERTOOL_H #define QMLPROFILERTOOL_H -#include "ianalyzertool.h" -#include "ianalyzerengine.h" +#include <analyzerbase/ianalyzertool.h> +#include <analyzerbase/ianalyzerengine.h> -namespace Analyzer { +namespace QmlProfiler { namespace Internal { -class QmlProfilerTool : public IAnalyzerTool +class QmlProfilerTool : public Analyzer::IAnalyzerTool { Q_OBJECT public: @@ -20,9 +20,9 @@ public: void initialize(ExtensionSystem::IPlugin *plugin); - IAnalyzerEngine *createEngine(ProjectExplorer::RunConfiguration *runConfiguration); + Analyzer::IAnalyzerEngine *createEngine(ProjectExplorer::RunConfiguration *runConfiguration); - IAnalyzerOutputPaneAdapter *outputPaneAdapter(); + Analyzer::IAnalyzerOutputPaneAdapter *outputPaneAdapter(); QWidget *createToolBarWidget(); QWidget *createTimeLineWidget(); @@ -48,7 +48,7 @@ private: QmlProfilerToolPrivate *d; }; -} -} +} // namespace Internal +} // namespace QmlProfiler #endif // QMLPROFILERTOOL_H |