File indexing completed on 2024-05-12 05:11:10

0001 /*
0002     SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company, <info@kdab.com>
0003     SPDX-FileCopyrightText: 2010 Andras Mantia <andras@kdab.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-or-later
0006 */
0007 
0008 #include "commandbase.h"
0009 using namespace Akonadi;
0010 CommandBase::CommandBase(QObject *parent)
0011     : QObject(parent)
0012 {
0013 }
0014 
0015 void CommandBase::emitResult(Result value)
0016 {
0017     Q_EMIT result(value);
0018     deleteLater();
0019 }
0020 
0021 #include "moc_commandbase.cpp"