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_INFINIBAND_SETTING_P_H |
8 | #define NETWORKMANAGERQT_INFINIBAND_SETTING_P_H |
9 | |
10 | #include <QString> |
11 | |
12 | namespace NetworkManager |
13 | { |
14 | class InfinibandSettingPrivate |
15 | { |
16 | public: |
17 | InfinibandSettingPrivate(); |
18 | |
19 | QString name; |
20 | QByteArray macAddress; |
21 | quint32 mtu; |
22 | NetworkManager::InfinibandSetting::TransportMode transportMode; |
23 | qint32 pKey; |
24 | QString parent; |
25 | }; |
26 | |
27 | } |
28 | |
29 | #endif // NETWORKMANAGERQT_INFINIBAND_SETTING_P_H |
30 | |