File indexing completed on 2024-05-12 13:04:45

0001 /*
0002  * This file is part of the KDE project
0003  * SPDX-FileCopyrightText: 2013 Arjen Hiemstra <ahiemstra@heimr.nl>
0004  *
0005  * SPDX-License-Identifier: GPL-2.0-or-later
0006  */
0007 
0008 #ifndef CQPLUGINLOADERPROXY_H
0009 #define CQPLUGINLOADERPROXY_H
0010 
0011 #include <QObject>
0012 
0013 class CQPluginLoaderProxy : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     explicit CQPluginLoaderProxy(QObject* parent = 0);
0019     ~CQPluginLoaderProxy();
0020 
0021     Q_INVOKABLE void loadPlugins();
0022 };
0023 
0024 #endif // CQPLUGINLOADERPROXY_H