2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 Denis Mingulov
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2010-07-16 11:18:30 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
#include <extensionsystem/iplugin.h>
|
|
|
|
|
|
|
|
|
|
namespace ClassView {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2020-01-29 04:15:25 +03:00
|
|
|
class ClassViewPlugin final : public ExtensionSystem::IPlugin
|
2010-07-16 11:18:30 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2012-02-21 16:52:28 +01:00
|
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "ClassView.json")
|
2010-07-16 11:18:30 +02:00
|
|
|
|
|
|
|
|
public:
|
2018-02-06 12:57:00 +01:00
|
|
|
ClassViewPlugin() = default;
|
|
|
|
|
~ClassViewPlugin() final;
|
2010-07-16 11:18:30 +02:00
|
|
|
|
2018-02-06 12:57:00 +01:00
|
|
|
private:
|
2023-01-20 12:28:36 +01:00
|
|
|
void initialize() final;
|
2018-02-06 12:57:00 +01:00
|
|
|
void extensionsInitialized() final {}
|
2010-07-16 11:18:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClassView
|