2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2012-09-24 14:12:55 +02:00
|
|
|
|
|
|
|
|
#include "endpuppetcommand.h"
|
|
|
|
|
|
2013-07-16 17:00:07 +02:00
|
|
|
#include <QDebug>
|
|
|
|
|
|
2012-09-24 14:12:55 +02:00
|
|
|
namespace QmlDesigner {
|
|
|
|
|
|
2018-07-24 23:56:45 +02:00
|
|
|
EndPuppetCommand::EndPuppetCommand() = default;
|
2012-09-24 14:12:55 +02:00
|
|
|
|
|
|
|
|
QDataStream &operator<<(QDataStream &out, const EndPuppetCommand &/*command*/)
|
|
|
|
|
{
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QDataStream &operator>>(QDataStream &in, EndPuppetCommand &/*command*/)
|
|
|
|
|
{
|
|
|
|
|
return in;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-16 17:00:07 +02:00
|
|
|
QDebug operator <<(QDebug debug, const EndPuppetCommand &/*command*/)
|
|
|
|
|
{
|
|
|
|
|
return debug.nospace() << "EndPuppetCommand()";
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-24 14:12:55 +02:00
|
|
|
} // namespace QmlDesigner
|