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
|
2014-06-18 11:17:59 +02:00
|
|
|
|
|
|
|
|
#include "puppetalivecommand.h"
|
|
|
|
|
|
|
|
|
|
namespace QmlDesigner {
|
|
|
|
|
|
2018-07-24 23:56:45 +02:00
|
|
|
PuppetAliveCommand::PuppetAliveCommand() = default;
|
2014-06-18 11:17:59 +02:00
|
|
|
|
2014-06-20 08:39:50 +03:00
|
|
|
QDataStream &operator<<(QDataStream &out, const PuppetAliveCommand &/*command*/)
|
2014-06-18 11:17:59 +02:00
|
|
|
{
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-20 08:39:50 +03:00
|
|
|
QDataStream &operator>>(QDataStream &in, PuppetAliveCommand &/*command*/)
|
2014-06-18 11:17:59 +02:00
|
|
|
{
|
|
|
|
|
return in;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-20 08:39:50 +03:00
|
|
|
QDebug operator <<(QDebug debug, const PuppetAliveCommand &/*command*/)
|
2014-06-18 11:17:59 +02:00
|
|
|
{
|
|
|
|
|
return debug.nospace() << "PuppetAliveCommand()";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace QmlDesigner
|