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_GENERIC_DEVICE_P_H
8#define NETWORKMANAGERQT_GENERIC_DEVICE_P_H
9
10#include "device_p.h"
11#include "genericdevice.h"
12#include "genericdeviceinterface.h"
13#include "manager_p.h"
14
15namespace NetworkManager
16{
17class GenericDevicePrivate : public DevicePrivate
18{
19 Q_OBJECT
20public:
21 GenericDevicePrivate(const QString &path, GenericDevice *q);
22 ~GenericDevicePrivate() override;
23
24 OrgFreedesktopNetworkManagerDeviceGenericInterface iface;
25 QString hwAddress;
26 QString typeDescription;
27
28 Q_DECLARE_PUBLIC(GenericDevice)
29protected:
30 /**
31 * When subclassing make sure to call the parent class method
32 * if the property was not useful to your new class
33 */
34 void propertyChanged(const QString &property, const QVariant &value) override;
35};
36
37}
38
39#endif
40

source code of networkmanager-qt/src/genericdevice_p.h