aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmlpuppetcommunication/commands/changefileurlcommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/qmlpuppetcommunication/commands/changefileurlcommand.cpp')
-rw-r--r--src/libs/qmlpuppetcommunication/commands/changefileurlcommand.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libs/qmlpuppetcommunication/commands/changefileurlcommand.cpp b/src/libs/qmlpuppetcommunication/commands/changefileurlcommand.cpp
new file mode 100644
index 0000000000..caada4abfb
--- /dev/null
+++ b/src/libs/qmlpuppetcommunication/commands/changefileurlcommand.cpp
@@ -0,0 +1,16 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
+
+#include "changefileurlcommand.h"
+
+#include <QDebug>
+
+namespace QmlDesigner {
+
+QDebug operator <<(QDebug debug, const ChangeFileUrlCommand &command)
+{
+ return debug.nospace() << "ChangeFileUrlCommand("
+ << "fileUrl: " << command.fileUrl << ")";
+}
+
+} // namespace QmlDesigner