| 1 | /* |
| 2 | SPDX-FileCopyrightText: 2012-2013 Jan Grulich <jgrulich@redhat.com> |
| 3 | |
| 4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
| 5 | */ |
| 6 | |
| 7 | #ifndef NETWORKMANAGERQT_VLAN_SETTING_P_H |
| 8 | #define NETWORKMANAGERQT_VLAN_SETTING_P_H |
| 9 | |
| 10 | #include <QStringList> |
| 11 | |
| 12 | namespace NetworkManager |
| 13 | { |
| 14 | class VlanSettingPrivate |
| 15 | { |
| 16 | public: |
| 17 | VlanSettingPrivate(); |
| 18 | |
| 19 | QString name; |
| 20 | QString interfaceName; |
| 21 | QString parent; |
| 22 | quint32 id; |
| 23 | NetworkManager::VlanSetting::Flags flags; |
| 24 | QStringList ingressPriorityMap; |
| 25 | QStringList egressPriorityMap; |
| 26 | }; |
| 27 | |
| 28 | } |
| 29 | |
| 30 | #endif // NETWORKMANAGERQT_VLAN_SETTING_P_H |
| 31 | |