aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmlpuppetcommunication/commands/componentcompletedcommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/qmlpuppetcommunication/commands/componentcompletedcommand.h')
-rw-r--r--src/libs/qmlpuppetcommunication/commands/componentcompletedcommand.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/libs/qmlpuppetcommunication/commands/componentcompletedcommand.h b/src/libs/qmlpuppetcommunication/commands/componentcompletedcommand.h
new file mode 100644
index 0000000000..86c492fa3b
--- /dev/null
+++ b/src/libs/qmlpuppetcommunication/commands/componentcompletedcommand.h
@@ -0,0 +1,36 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
+
+#pragma once
+#include <QMetaType>
+#include <QVector>
+#include <QDataStream>
+
+namespace QmlDesigner {
+
+class ComponentCompletedCommand
+{
+ friend QDataStream &operator>>(QDataStream &in, ComponentCompletedCommand &command);
+ friend bool operator ==(const ComponentCompletedCommand &first, const ComponentCompletedCommand &second);
+
+public:
+ ComponentCompletedCommand();
+ explicit ComponentCompletedCommand(const QVector<qint32> &container);
+
+ QVector<qint32> instances() const;
+
+ void sort();
+
+private:
+ QVector<qint32> m_instanceVector;
+};
+
+QDataStream &operator<<(QDataStream &out, const ComponentCompletedCommand &command);
+QDataStream &operator>>(QDataStream &in, ComponentCompletedCommand &command);
+
+bool operator ==(const ComponentCompletedCommand &first, const ComponentCompletedCommand &second);
+QDebug operator <<(QDebug debug, const ComponentCompletedCommand &command);
+
+} // namespace QmlDesigner
+
+Q_DECLARE_METATYPE(QmlDesigner::ComponentCompletedCommand)