forked from qt-creator/qt-creator
Conflicts: src/plugins/clangcodemodel/clangcodemodelplugin.cpp Change-Id: Idb3d6e8fdfd278979f6180dc3795a2138bc2e61d
34 lines
820 B
C++
34 lines
820 B
C++
// 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 "clangutils.h"
|
|
|
|
#include <extensionsystem/iplugin.h>
|
|
|
|
#include <utils/parameteraction.h>
|
|
|
|
#include <QFutureWatcher>
|
|
|
|
namespace ClangCodeModel::Internal {
|
|
|
|
class ClangCodeModelPlugin final: public ExtensionSystem::IPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "ClangCodeModel.json")
|
|
|
|
public:
|
|
~ClangCodeModelPlugin() override;
|
|
void initialize() override;
|
|
|
|
private:
|
|
void generateCompilationDB();
|
|
void createCompilationDBAction();
|
|
|
|
Utils::ParameterAction *m_generateCompilationDBAction = nullptr;
|
|
QFutureWatcher<GenerateCompilationDbResult> m_generatorWatcher;
|
|
};
|
|
|
|
} // ClangCodeModel::Internal
|