// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include #include #include #include namespace QmlProfiler { namespace Internal { class QmlProfilerRunner : public ProjectExplorer::RunWorker { public: QmlProfilerRunner(ProjectExplorer::RunControl *runControl); private: void start() override; void stop() override; }; ProjectExplorer::RunWorker *createLocalQmlProfilerWorker(ProjectExplorer::RunControl *runControl); void setupQmlProfilerRunning(); } // QmlProfiler::Internal class SimpleQmlProfilerRunnerFactory final : public ProjectExplorer::RunWorkerFactory { public: explicit SimpleQmlProfilerRunnerFactory(const QList &runConfigs, const QList &extraRunModes = {}) { cloneProduct(ProjectExplorer::Constants::QML_PROFILER_RUN_FACTORY); addSupportedRunMode(ProjectExplorer::Constants::QML_PROFILER_RUN_MODE); for (const Utils::Id &id : extraRunModes) addSupportedRunMode(id); setSupportedRunConfigs(runConfigs); } }; } // QmlProfiler