Files
qt-creator/src/plugins/qmlprofiler/qmlprofilerplugin.h

24 lines
637 B
C
Raw Normal View History

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
2011-03-25 09:25:17 +01:00
#pragma once
2011-03-11 12:22:57 +01:00
#include <extensionsystem/iplugin.h>
namespace QmlProfiler::Internal {
2011-03-11 12:22:57 +01:00
class QmlProfilerPlugin : public ExtensionSystem::IPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "QmlProfiler.json")
2011-03-11 12:22:57 +01:00
private:
bool initialize(const QStringList &arguments, QString *errorString) final;
void extensionsInitialized() final;
ShutdownFlag aboutToShutdown() final;
class QmlProfilerPluginPrivate *d = nullptr;
2011-03-11 12:22:57 +01:00
};
} // QmlProfiler::Internal