File indexing completed on 2024-05-12 05:55:42

0001 /*
0002     This file is part of the Okteta Kasten module, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2023 Friedrich W. H. Kossebau <kossebau@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007 */
0008 
0009 #ifndef KASTEN_ADDRESSCOMBOBOXCODINGCONFIGENTRY_HPP
0010 #define KASTEN_ADDRESSCOMBOBOXCODINGCONFIGENTRY_HPP
0011 
0012 // KF
0013 #include <KConfigGroup>
0014 // Okteta Kasten gui
0015 #include <Kasten/Okteta/AddressComboBox>
0016 
0017 template <>
0018 Okteta::AddressComboBox::Coding
0019 KConfigGroup::readEntry(const char *key,
0020                         const Okteta::AddressComboBox::Coding &defaultValue) const;
0021 
0022 template <>
0023 void KConfigGroup::writeEntry(const char *key,
0024                               const Okteta::AddressComboBox::Coding &value,
0025                               KConfigBase::WriteConfigFlags flags);
0026 
0027 #endif