File indexing completed on 2024-05-12 03:54:48

0001 // SPDX-FileCopyrightText: 2023 Alexander Lohnau <alexander.lohnau@gmx.de>
0002 // SPDX-License-Identifier: LGPL-2.0-or-later
0003 #pragma once
0004 
0005 #include "plugin_classes_export.h"
0006 #include <QObject>
0007 
0008 class PLUGIN_CLASSES_EXPORT MyPlugin : public QObject
0009 {
0010     Q_OBJECT
0011 public:
0012     MyPlugin(QObject *parent);
0013     ~MyPlugin() override;
0014 };
0015 
0016 class PLUGIN_CLASSES_EXPORT MyPlugin2 : public QObject
0017 {
0018     Q_OBJECT
0019 public:
0020     MyPlugin2(QObject *parent);
0021     ~MyPlugin2() override;
0022 };