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_ADSL_DEVICE_P_H
8#define NETWORKMANAGERQT_ADSL_DEVICE_P_H
9
10#include "adsldevice.h"
11#include "device_p.h"
12#include "manager.h"
13#include "manager_p.h"
14
15#include "adsldeviceinterface.h"
16
17namespace NetworkManager
18{
19class AdslDevicePrivate : public DevicePrivate
20{
21 Q_OBJECT
22public:
23 AdslDevicePrivate(const QString &path, AdslDevice *q);
24 ~AdslDevicePrivate() override;
25
26 OrgFreedesktopNetworkManagerDeviceAdslInterface iface;
27 bool carrier;
28
29 Q_DECLARE_PUBLIC(AdslDevice)
30protected:
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#endif
40

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