File indexing completed on 2024-05-12 04:01:53

0001 /*
0002     SPDX-FileCopyrightText: 2014 Alejandro Fiestas Olivares <afiestas@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #include "dummyacpluggedjob.h"
0008 
0009 using namespace Solid;
0010 
0011 void DummyAcPluggedJob::doStart()
0012 {
0013     emitResult();
0014 }
0015 
0016 bool DummyAcPluggedJob::isPlugged() const
0017 {
0018     return true;
0019 }
0020 
0021 #include "moc_dummyacpluggedjob.cpp"