2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2019 Klarälvdalens Datakonsult AB, a KDAB Group company,
|
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
|
2023-01-20 12:28:36 +01:00
|
|
|
|
2019-08-29 11:45:45 +02:00
|
|
|
#include "ctfvisualizertool.h"
|
|
|
|
|
|
2024-01-12 17:56:22 +01:00
|
|
|
#include <extensionsystem/iplugin.h>
|
|
|
|
|
|
2023-09-27 19:36:19 +02:00
|
|
|
namespace CtfVisualizer::Internal {
|
2019-08-29 11:45:45 +02:00
|
|
|
|
2024-01-12 17:56:22 +01:00
|
|
|
class CtfVisualizerPlugin : public ExtensionSystem::IPlugin
|
2019-08-29 11:45:45 +02:00
|
|
|
{
|
2024-01-12 17:56:22 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "CtfVisualizer.json")
|
2019-08-29 11:45:45 +02:00
|
|
|
|
2024-01-12 17:56:22 +01:00
|
|
|
void initialize() final
|
|
|
|
|
{
|
2024-01-12 18:34:46 +01:00
|
|
|
setupCtfVisualizerTool(this);
|
2024-01-12 17:56:22 +01:00
|
|
|
}
|
|
|
|
|
};
|
2019-08-29 11:45:45 +02:00
|
|
|
|
2024-01-12 17:56:22 +01:00
|
|
|
} // CtfVisualizer::Internal
|
2019-08-29 11:45:45 +02:00
|
|
|
|
2024-01-12 17:56:22 +01:00
|
|
|
#include "ctfvisualizerplugin.moc"
|