File indexing completed on 2024-09-29 12:03:30
0001 /* 0002 SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org> 0003 SPDX-FileCopyrightText: 2014 Alex Merry <alexmerry@kde.org> 0004 0005 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0006 */ 0007 0008 #ifndef MULTIPLUGIN_H 0009 #define MULTIPLUGIN_H 0010 0011 #include <QObject> 0012 0013 class MultiPlugin1 : public QObject 0014 { 0015 Q_OBJECT 0016 0017 public: 0018 MultiPlugin1(QObject *parent, const QVariantList &args); 0019 }; 0020 0021 class MultiPlugin2 : public QObject 0022 { 0023 Q_OBJECT 0024 0025 public: 0026 MultiPlugin2(QObject *parent, const QVariantList &args); 0027 }; 0028 0029 #endif // MULTIPLUGIN_H