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

0001 /*
0002     SPDX-FileCopyrightText: 2009 Constantin Berzan <exit3219@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #pragma once
0007 
0008 #include <QObject>
0009 
0010 class KJob;
0011 
0012 namespace Akonadi
0013 {
0014 /**
0015   @internal
0016 */
0017 class DispatcherInterfacePrivate : public QObject
0018 {
0019     Q_OBJECT
0020 
0021 public Q_SLOTS:
0022     void massModifyResult(KJob *job);
0023 };
0024 }