Files
qt-creator/src/plugins/valgrind/xmlprotocol/announcethread.h

36 lines
829 B
C
Raw Normal View History

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once
#include <QSharedDataPointer>
#include <QVector>
namespace Valgrind {
namespace XmlProtocol {
class Frame;
class AnnounceThread {
public:
AnnounceThread();
AnnounceThread(const AnnounceThread &other);
~AnnounceThread();
AnnounceThread &operator=(const AnnounceThread &other);
void swap(AnnounceThread &other);
bool operator==(const AnnounceThread &other) const;
qint64 helgrindThreadId() const;
void setHelgrindThreadId(qint64 id);
QVector<Frame> stack() const;
void setStack(const QVector<Frame> &stack);
private:
class Private;
QSharedDataPointer<Private> d;
};
2011-05-18 17:05:49 +02:00
} // namespace XmlProtocol
} // namespace Valgrind