Add debug output command

Adds a infrastructure to get text information back to the client.

Change-Id: Ie5b92f875fe4cbd5f5a8e4d60a797efa0e5cbf70
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
Marco Bubke
2012-11-05 16:42:31 +01:00
committed by Thomas Hartmann
parent e0411334af
commit 4f2ceefeff
12 changed files with 177 additions and 1 deletions
@@ -66,6 +66,7 @@
#include "componentcompletedcommand.h"
#include "changenodesourcecommand.h"
#include "endpuppetcommand.h"
#include "debugoutputcommand.h"
namespace QmlDesigner {
@@ -139,6 +140,11 @@ void NodeInstanceClientProxy::token(const TokenCommand &command)
writeCommand(QVariant::fromValue(command));
}
void NodeInstanceClientProxy::debugOutput(const DebugOutputCommand &command)
{
writeCommand(QVariant::fromValue(command));
}
void NodeInstanceClientProxy::flush()
{
}