File indexing completed on 2024-06-09 04:00:40

0001 /*
0002     SPDX-FileCopyrightText: 2010 Kevin Ottens <ervin@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #include "udevdeviceinterface.h"
0008 
0009 using namespace Solid::Backends::UDev;
0010 
0011 DeviceInterface::DeviceInterface(UDevDevice *device)
0012     : QObject(device)
0013     , m_device(device)
0014 {
0015 }
0016 
0017 DeviceInterface::~DeviceInterface()
0018 {
0019 }
0020 
0021 #include "moc_udevdeviceinterface.cpp"