1 | /* |
---|---|
2 | SPDX-FileCopyrightText: 2012-2014 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_MACVLAN_DEVICE_P_H |
8 | #define NETWORKMANAGERQT_MACVLAN_DEVICE_P_H |
9 | |
10 | #include "device_p.h" |
11 | #include "macvlandevice.h" |
12 | #include "macvlandeviceinterface.h" |
13 | #include "manager_p.h" |
14 | |
15 | namespace NetworkManager |
16 | { |
17 | class MacVlanDevicePrivate : public DevicePrivate |
18 | { |
19 | Q_OBJECT |
20 | public: |
21 | MacVlanDevicePrivate(const QString &path, MacVlanDevice *q); |
22 | ~MacVlanDevicePrivate() override; |
23 | |
24 | OrgFreedesktopNetworkManagerDeviceMacvlanInterface iface; |
25 | QString mode; |
26 | bool noPromisc; |
27 | QString parent; |
28 | |
29 | Q_DECLARE_PUBLIC(MacVlanDevice) |
30 | protected: |
31 | /** |
32 | * When subclassing make sure to call the parent class method |
33 | * if the property was not useful to your new class |
34 | */ |
35 | void propertyChanged(const QString &property, const QVariant &value) override; |
36 | }; |
37 | |
38 | } |
39 | |
40 | #endif |
41 |