// Copyright (C) 2019 Klarälvdalens Datakonsult AB, a KDAB Group company, // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include namespace CtfVisualizer { namespace Internal { class CtfVisualizerPlugin : public ExtensionSystem::IPlugin { Q_OBJECT Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "CtfVisualizer.json") public: ~CtfVisualizerPlugin(); void initialize() final; class CtfVisualizerPluginPrivate *d = nullptr; }; } // namespace Internal } // namespace CtfVisualizer