2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2020-07-27 18:14:33 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-09-03 13:48:13 +02:00
|
|
|
#include <QMetaType>
|
2020-07-27 18:14:33 +02:00
|
|
|
|
|
|
|
|
namespace QmlDesigner {
|
|
|
|
|
|
2020-09-03 13:48:13 +02:00
|
|
|
class SceneCreatedCommand
|
2020-07-27 18:14:33 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2020-09-03 13:48:13 +02:00
|
|
|
friend QDataStream &operator<<(QDataStream &out, const SceneCreatedCommand &) { return out; }
|
2020-07-27 18:14:33 +02:00
|
|
|
|
2020-09-03 13:48:13 +02:00
|
|
|
friend QDataStream &operator>>(QDataStream &in, SceneCreatedCommand &) { return in; }
|
2020-07-27 18:14:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace QmlDesigner
|
2020-09-03 13:48:13 +02:00
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(QmlDesigner::SceneCreatedCommand)
|