Akonadi Mime

commandbase.cpp
1/*
2 SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company, <info@kdab.com>
3 SPDX-FileCopyrightText: 2010 Andras Mantia <andras@kdab.com>
4
5 SPDX-License-Identifier: LGPL-2.1-or-later
6*/
7
8#include "commandbase.h"
9using namespace Akonadi;
10CommandBase::CommandBase(QObject *parent)
11 : QObject(parent)
12{
13}
14
15void CommandBase::emitResult(Result value)
16{
17 Q_EMIT result(value);
19}
20
21#include "moc_commandbase.cpp"
Q_EMITQ_EMIT
void deleteLater()
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:53:33 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.