Libksieve

sieveimappasswordprovider.h
1/*
2 SPDX-FileCopyrightText: 2017 Albert Astals Cid <aacid@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "ksievecore_export.h"
10#include <QObject>
11class QString;
12
13namespace KSieveCore
14{
15/**
16 * @brief The SieveImapPasswordProvider class
17 * @author Laurent Montel <montel@kde.org>
18 */
19class KSIEVECORE_EXPORT SieveImapPasswordProvider : public QObject
20{
21 Q_OBJECT
22public:
23 explicit SieveImapPasswordProvider(QObject *parent = nullptr);
24
25 ~SieveImapPasswordProvider() override = default;
26 virtual void passwords(const QString &identifier) = 0;
27Q_SIGNALS:
28 void passwordsRequested(const QString &sievePassword, const QString &sieveCustomPassword);
29};
30}
The SieveImapPasswordProvider class.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:19 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.