File indexing completed on 2024-05-26 04:05:39

0001 /*
0002     SPDX-FileCopyrightText: 2013 Patrick von Reth <vonreth@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 "wininterface.h"
0008 
0009 using namespace Solid::Backends::Win;
0010 
0011 WinInterface::WinInterface(WinDevice *device)
0012     : QObject(device)
0013     , m_device(device)
0014 {
0015 }
0016 
0017 WinInterface::~WinInterface()
0018 {
0019 }
0020 
0021 #include "moc_wininterface.cpp"