forked from qt-creator/qt-creator
Change-Id: I636b93d74b4f9ab9ade28c46c6e84b461ccf34be Reviewed-by: Christian Stenger <christian.stenger@qt.io>
24 lines
600 B
C++
24 lines
600 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 <extensionsystem/iplugin.h>
|
|
|
|
namespace TextEditor { class ICodeStylePreferencesFactory; }
|
|
|
|
namespace ClangFormat {
|
|
|
|
class ClangFormatPlugin : public ExtensionSystem::IPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "ClangFormat.json")
|
|
|
|
~ClangFormatPlugin() override;
|
|
void initialize() final;
|
|
|
|
TextEditor::ICodeStylePreferencesFactory *m_factory = nullptr;
|
|
};
|
|
|
|
} // namespace ClangTools
|