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::startTrace(qint64 time, const QList<int> &engineIds)
18{
19 Q_UNUSED(time);
20 Q_UNUSED(engineIds);
21}
22
23void QQmlProfilerEventReceiver::endTrace(qint64 time, const QList<int> &engineIds)
24{
25 Q_UNUSED(time);
26 Q_UNUSED(engineIds);
27}
28
29void QQmlProfilerEventReceiver::complete(qint64 maximumTime)
30{
31 Q_UNUSED(maximumTime);
32 emit dataReady();
33}
34
35QQmlProfilerEventReceiver::QQmlProfilerEventReceiver(QObjectPrivate &dd, QObject *parent)
36 : QObject(dd, parent)
37{
38}
39
40QT_END_NAMESPACE
41
42#include "moc_qqmlprofilereventreceiver_p.cpp"
Combined button and popup list for selecting options.