File indexing completed on 2024-12-29 04:44:30

0001 /*
0002    SPDX-FileCopyrightText: 2012-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <KConfigGroup>
0010 #include <QString>
0011 
0012 namespace SylpheedSettingsUtils
0013 {
0014 bool readConfig(const QString &key, const KConfigGroup &accountConfig, int &value, bool remove_underscore);
0015 bool readConfig(const QString &key, const KConfigGroup &accountConfig, QString &value, bool remove_underscore);
0016 }