forked from qt-creator/qt-creator
We'd like to split up the monster files cppquickfixes.cpp and cppquickfix_test.cpp by moving non-trivial quickfixes into dedicated files. Since there will be many of them, we want to have them in a separate directory. This patch prepares that. Change-Id: I1e78fab5cce25151662297482582c8043618332e Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
34 lines
891 B
C++
34 lines
891 B
C++
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <cppeditor/quickfixes/cppquickfix.h>
|
|
#include <languageclient/languageclientquickfix.h>
|
|
|
|
namespace ClangCodeModel {
|
|
namespace Internal {
|
|
class ClangdClient;
|
|
|
|
class ClangdQuickFixFactory : public CppEditor::CppQuickFixFactory
|
|
{
|
|
public:
|
|
ClangdQuickFixFactory();
|
|
|
|
void doMatch(const CppEditor::Internal::CppQuickFixInterface &interface,
|
|
QuickFixOperations &result) override;
|
|
};
|
|
|
|
class ClangdQuickFixProvider : public LanguageClient::LanguageClientQuickFixProvider
|
|
{
|
|
public:
|
|
ClangdQuickFixProvider(ClangdClient *client);
|
|
|
|
private:
|
|
TextEditor::IAssistProcessor *createProcessor(
|
|
const TextEditor::AssistInterface *) const override;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace ClangCodeModel
|