File indexing completed on 2024-04-14 03:57:38

0001 /*
0002     SPDX-FileCopyrightText: 2018 Pranav Gade <pranavgade20@gmail.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_TEAM_PORT_SETTING_P_H
0008 #define NETWORKMANAGERQT_TEAM_PORT_SETTING_P_H
0009 
0010 #include <QString>
0011 
0012 typedef QList<QVariantMap> NMVariantMapList;
0013 
0014 namespace NetworkManager
0015 {
0016 class TeamPortSettingPrivate
0017 {
0018 public:
0019     TeamPortSettingPrivate();
0020 
0021     QString name;
0022 
0023     QString config;
0024     qint32 lacpKey;
0025     qint32 lacpPrio;
0026     qint32 prio;
0027     qint32 queueId;
0028     bool sticky;
0029     NMVariantMapList linkWatchers;
0030 };
0031 
0032 }
0033 
0034 #endif // NETWORKMANAGERQT_TEAM_PORT_SETTING_P_H