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

@@ -11,7 +11,9 @@ class IEditor;
namespace Debugger {
namespace Internal {
class QmlCppEnginePrivate;
} // namespace Internal
class DEBUGGER_EXPORT QmlCppEngine : public DebuggerEngine
{
@@ -112,7 +114,7 @@ private:
void engineStateChanged(const DebuggerState &newState);
private:
QScopedPointer<QmlCppEnginePrivate> d;
QScopedPointer<Internal::QmlCppEnginePrivate> d;
};
} // namespace Debugger