File indexing completed on 2024-04-28 16:52:16

0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 // SPDX-FileCopyrightText: 2011 Craig Drummond <craig.p.drummond@gmail.com>
0003 // SPDX-FileCopyrightText: 2018 Alexis Lopes Zubeta <contact@azubieta.net>
0004 // SPDX-FileCopyrightText: 2020 Tomaz Canabrava <tcanabrava@kde.org>
0005 /*
0006  * UFW KControl Module
0007  */
0008 
0009 #include "appprofiles.h"
0010 #include <KConfig>
0011 #include <KConfigGroup>
0012 #include <QDir>
0013 
0014 Entry::Entry(const QString &n, const QString &p)
0015     : name(n)
0016     , ports(p)
0017 {
0018     ports.replace('|', ' ');
0019 }