Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qqmlprofilereventreceiver.cpp
Go to the documentation of this file.
1// Copyright (C) 2017 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant
4
6
8
9QQmlProfilerEventReceiver::~QQmlProfilerEventReceiver() = default;
10
11bool QQmlProfilerEventReceiver::save(const QString &filename)
12{
13 Q_UNUSED(filename);
14 return false;
15}
16
17void QQmlProfilerEventReceiver::clear()
18{
19}
20
21void QQmlProfilerEventReceiver::startTrace(qint64 time, const QList<int> &engineIds)
22{
23 Q_UNUSED(time);
24 Q_UNUSED(engineIds);
25}
26
27void QQmlProfilerEventReceiver::endTrace(qint64 time, const QList<int> &engineIds)
28{
29 Q_UNUSED(time);
30 Q_UNUSED(engineIds);
31}
32
33void QQmlProfilerEventReceiver::complete(qint64 maximumTime)
34{
35 Q_UNUSED(maximumTime);
36 emit dataReady();
37}
38
39QQmlProfilerEventReceiver::QQmlProfilerEventReceiver(QObjectPrivate &dd, QObject *parent)
40 : QObject(dd, parent)
41{
42}
43
44QT_END_NAMESPACE
45
46#include "moc_qqmlprofilereventreceiver_p.cpp"
Combined button and popup list for selecting options.