aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/perfprofiler/perfprofilerplugin.h
blob: 62fac15807f5cdd7d8e2fb84a4200663f4ab237b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (C) 2018 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 "perfsettings.h"

#include <extensionsystem/iplugin.h>

namespace PerfProfiler {
namespace Internal {

class PerfProfilerPlugin : public ExtensionSystem::IPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "PerfProfiler.json")

public:
    ~PerfProfilerPlugin();

    bool initialize(const QStringList &arguments, QString *errorString) final;
    QVector<QObject *> createTestObjects() const final;

    static PerfSettings *globalSettings();

    class PerfProfilerPluginPrivate *d = nullptr;
};

} // namespace Internal
} // namespace PerfProfiler