File indexing completed on 2024-12-15 04:55:35
0001 /* 0002 SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #include "abstractimapsettingspassword.h" 0008 0009 AbstractImapSettingsPassword::AbstractImapSettingsPassword(QObject *parent) 0010 : QObject(parent) 0011 { 0012 } 0013 0014 AbstractImapSettingsPassword::~AbstractImapSettingsPassword() = default; 0015 0016 void AbstractImapSettingsPassword::importPasswords(const SieveEditorUtil::SieveServerConfig &config, const QString &filename, bool reuseImapSettings) 0017 { 0018 Q_UNUSED(config) 0019 Q_UNUSED(filename) 0020 Q_UNUSED(reuseImapSettings) 0021 } 0022 0023 #include "moc_abstractimapsettingspassword.cpp"