summaryrefslogtreecommitdiff
path: root/src/plugins/qmlprofiler/qmlprofilerengine.h
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2011-03-25 09:21:00 +0100
committerKai Koehne <kai.koehne@nokia.com>2011-03-25 09:21:00 +0100
commitac61c9a91885f373d021c15a6279cd81d64bbbf5 (patch)
tree2bdc9c7dfe8dc933da4dfaa78ffb55c71cfd1d01 /src/plugins/qmlprofiler/qmlprofilerengine.h
parent76a5abf602fe910fd32c42638da77fd94bbed1c7 (diff)
downloadqt-creator-ac61c9a91885f373d021c15a6279cd81d64bbbf5.tar.gz
QmlProfiler: Namespace fixes
Use own namespace (QmlProfiler) instead of Analyzer.
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerengine.h')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilerengine.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerengine.h b/src/plugins/qmlprofiler/qmlprofilerengine.h
index cc3449cb05..7b51939eda 100644
--- a/src/plugins/qmlprofiler/qmlprofilerengine.h
+++ b/src/plugins/qmlprofiler/qmlprofilerengine.h
@@ -1,13 +1,12 @@
#ifndef QMLPROFILERENGINE_H
#define QMLPROFILERENGINE_H
-#include "ianalyzerengine.h"
+#include <analyzerbase/ianalyzerengine.h>
-namespace Analyzer {
+namespace QmlProfiler {
namespace Internal {
-
-class QmlProfilerEngine : public IAnalyzerEngine
+class QmlProfilerEngine : public Analyzer::IAnalyzerEngine
{
Q_OBJECT
public:
@@ -31,7 +30,7 @@ private:
QmlProfilerEnginePrivate *d;
};
-}
-}
+} // namespace Internal
+} // namespace QmlProfiler
#endif // QMLPROFILERENGINE_H