pluginwithoutmetadata.cpp 450 B

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