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

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 #pragma once
0009 
0010 class OrgKdeAkonadiImapSettingsInterface;
0011 class KJob;
0012 class QString;
0013 #define IMAP_RESOURCE_IDENTIFIER QStringLiteral("akonadi_imap_resource")
0014 
0015 namespace Util
0016 {
0017 /// Helper to sanely show an error message for a job
0018 void showJobError(KJob *job);
0019 
0020 OrgKdeAkonadiImapSettingsInterface *createImapSettingsInterface(const QString &ident);
0021 }