File indexing completed on 2024-12-15 05:02:05

0001 /*
0002     SPDX-FileCopyrightText: 2016 Ivan Čukić <ivan.cukic(at)kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef BALOO_RUNNER_H
0008 #define BALOO_RUNNER_H
0009 
0010 #include <AbstractRunner.h>
0011 
0012 class BalooRunner: public AbstractRunner {
0013     Q_OBJECT
0014     Q_CLASSINFO("D-Bus Interface", "org.kde.plasma.blade.Baloo")
0015 
0016 public:
0017     BalooRunner(QObject *parent, const QVariantList &args);
0018     ~BalooRunner();
0019 
0020     void query() override;
0021 
0022     void queryType(const QString &type, const QString &localizedType);
0023 
0024 private:
0025 };
0026 
0027 
0028 #endif // include guard end
0029