Warning, file /frameworks/kservice/autotests/nsaplugin.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0005 */ 0006 0007 #ifndef NSAPLUGIN_H 0008 #define NSAPLUGIN_H 0009 0010 #include <QObject> 0011 0012 #include <KPluginFactory> 0013 #include <kplugininfo.h> 0014 0015 class NSAPlugin : public QObject 0016 { 0017 Q_OBJECT 0018 0019 public: 0020 explicit NSAPlugin(QObject *parent, const QVariantList &args); 0021 0022 private: 0023 KPluginInfo m_pluginInfo; 0024 }; 0025 // Q_DECLARE_METATYPE(NSAPlugin*) 0026 0027 #endif // NSAPLUGIN_H