aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qml/qmlpuppet/commands/puppetalivecommand.cpp
blob: 0af289f2402c8b5b5a66fa3ae2533bd2ee5b3908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "puppetalivecommand.h"

namespace QmlDesigner {

PuppetAliveCommand::PuppetAliveCommand() = default;

QDataStream &operator<<(QDataStream &out, const PuppetAliveCommand &/*command*/)
{
    return out;
}

QDataStream &operator>>(QDataStream &in, PuppetAliveCommand &/*command*/)
{
    return in;
}

QDebug operator <<(QDebug debug, const PuppetAliveCommand &/*command*/)
{
    return debug.nospace() << "PuppetAliveCommand()";
}

} // namespace QmlDesigner