// 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 namespace Core { class IDocument; } namespace ProjectExplorer { class ProjectPanelFactory; } namespace ClangTools { namespace Internal { ProjectExplorer::ProjectPanelFactory *projectPanelFactory(); class ClangToolsPlugin final : public ExtensionSystem::IPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "ClangTools.json") public: ClangToolsPlugin() = default; ~ClangToolsPlugin() final; private: bool initialize(const QStringList &arguments, QString *errorString) final; void registerAnalyzeActions(); void onCurrentEditorChanged(); QVector createTestObjects() const final; class ClangToolsPluginPrivate *d = nullptr; }; } // namespace Internal } // namespace ClangTools