statickpluginclass_2.cpp 474 B

123456789101112131415161718
  1. // SPDX-FileCopyrightText: 2021 Alexander Lohnau <alexander.lohnau@gmx.de>
  2. // SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
  3. #include "kpluginfactory.h"
  4. class OtherStaticSimplePluginClass : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit OtherStaticSimplePluginClass(QObject *, const QVariantList &)
  9. {
  10. }
  11. };
  12. K_PLUGIN_CLASS_WITH_JSON(OtherStaticSimplePluginClass, "jsonplugin.json")
  13. #include "statickpluginclass_2.moc"