Files
qt-creator/share/qtcreator/qml/qmlpuppet/commands/nanotracecommand.h
Lucie Gérard a7956df3ca Use SPDX license identifiers
Replace the current license disclaimer in files by
a SPDX-License-Identifier.

Task-number: QTBUG-67283
Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2022-08-26 12:27:18 +00:00

56 lines
1.6 KiB
C++

// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once
#include <QDataStream>
#include <QDebug>
#include <QMetaType>
#include <QString>
namespace QmlDesigner {
class StartNanotraceCommand
{
public:
StartNanotraceCommand() = default;
StartNanotraceCommand(const QString &path);
QString path() const;
friend QDataStream &operator<<(QDataStream &out, const StartNanotraceCommand &command);
friend QDataStream &operator>>(QDataStream &in, StartNanotraceCommand &command);
friend QDebug operator <<(QDebug debug, const StartNanotraceCommand &command);
private:
QString m_filePath;
};
class EndNanotraceCommand
{
public:
EndNanotraceCommand() = default;
friend QDataStream &operator<<(QDataStream &out, const EndNanotraceCommand &command);
friend QDataStream &operator>>(QDataStream &in, EndNanotraceCommand &command);
friend QDebug operator <<(QDebug debug, const EndNanotraceCommand &command);
};
class SyncNanotraceCommand
{
public:
SyncNanotraceCommand() = default;
SyncNanotraceCommand(const QString& name);
QString name() const;
friend QDataStream &operator>>(QDataStream &in, SyncNanotraceCommand &command);
friend QDataStream &operator<<(QDataStream &out, const SyncNanotraceCommand &command);
friend QDebug operator <<(QDebug debug, const SyncNanotraceCommand &command);
private:
QString m_name;
};
} // namespace QmlDesigner
Q_DECLARE_METATYPE(QmlDesigner::StartNanotraceCommand)
Q_DECLARE_METATYPE(QmlDesigner::EndNanotraceCommand)
Q_DECLARE_METATYPE(QmlDesigner::SyncNanotraceCommand)