// SPDX-FileCopyrightText: 2024 Joshua Goins // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL #include "fakerunner.h" #include #include Q_SCRIPTABLE RemoteActions FakeRunner::Actions() { QCoreApplication::quit(); return {}; } Q_SCRIPTABLE RemoteMatches FakeRunner::Match(const QString &searchTerm) { Q_UNUSED(searchTerm); QCoreApplication::quit(); return {}; } Q_SCRIPTABLE void FakeRunner::Run(const QString &id, const QString &actionId) { Q_UNUSED(id); Q_UNUSED(actionId); QCoreApplication::quit(); } FakeRunner::FakeRunner() : QObject() { qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); } #include "moc_fakerunner.cpp"