File indexing completed on 2024-04-28 15:33:17

0001 /*
0002     SPDX-FileCopyrightText: 2012-2013 Jan Grulich <jgrulich@redhat.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef NETWORKMANAGERQT_VPN_SETTING_P_H
0008 #define NETWORKMANAGERQT_VPN_SETTING_P_H
0009 
0010 #include "generictypes.h"
0011 
0012 #include <QString>
0013 
0014 namespace NetworkManager
0015 {
0016 class VpnSettingPrivate
0017 {
0018 public:
0019     VpnSettingPrivate();
0020 
0021     QString name;
0022     QString serviceType;
0023     QString username;
0024     NMStringMap data;
0025     NMStringMap secrets;
0026     bool persistent;
0027     uint timeout;
0028 };
0029 
0030 }
0031 
0032 #endif // NETWORKMANAGERQT_VPN_SETTING_P_H