debugger: move qml engine private classes to internal namespace

This commit is contained in:
hjk
2010-11-22 10:20:31 +01:00
parent 7fbff9c3af
commit 585bb50d89
4 changed files with 29 additions and 25 deletions

View File

@@ -36,9 +36,10 @@
#include <QtNetwork/QAbstractSocket>
namespace Debugger {
class QmlAdapter;
namespace Internal {
class QmlEnginePrivate;
} // namespace Internal
class DEBUGGER_EXPORT QmlEngine : public DebuggerEngine
{
@@ -140,7 +141,7 @@ private:
private:
friend class QmlCppEngine;
QScopedPointer<QmlEnginePrivate> d;
QScopedPointer<Internal::QmlEnginePrivate> d;
};
} // namespace Debugger