| 1 | /* |
|---|---|
| 2 | SPDX-FileCopyrightText: 2010 Kevin Ottens <ervin@kde.org> |
| 3 | |
| 4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
| 5 | */ |
| 6 | |
| 7 | #include "udevdeviceinterface.h" |
| 8 | |
| 9 | using namespace Solid::Backends::UDev; |
| 10 | |
| 11 | DeviceInterface::DeviceInterface(UDevDevice *device) |
| 12 | : QObject(device) |
| 13 | , m_device(device) |
| 14 | { |
| 15 | } |
| 16 | |
| 17 | DeviceInterface::~DeviceInterface() |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | #include "moc_udevdeviceinterface.cpp" |
| 22 |
