QmlJSDebuggerLib: Place all classes in QmlObserver namespace

This commit is contained in:
Kai Koehne
2010-09-16 16:39:09 +02:00
parent c9395b45a2
commit 78b175c523
6 changed files with 22 additions and 18 deletions

View File

@@ -62,13 +62,15 @@
#include "qmljsdebugger_global.h"
QT_BEGIN_NAMESPACE
QT_FORWARD_DECLARE_CLASS(QScriptContext);
namespace QmlObserver {
class JSAgentWatchData;
class QScriptContext;
class QMLJSDEBUGGER_EXPORT JSDebuggerAgent : public QDeclarativeDebugService , public QScriptEngineAgent
{ Q_OBJECT
{
Q_OBJECT
public:
JSDebuggerAgent(QScriptEngine *engine);
~JSDebuggerAgent();
@@ -135,6 +137,6 @@ private:
Q_DISABLE_COPY(JSDebuggerAgent)
};
QT_END_NAMESPACE
} // namespace QmlObserver
#endif