File indexing completed on 2025-03-02 05:10:50

0001 // SPDX-FileCopyrightText: 2023 by Devin Lin <devin@kde.org>
0002 // SPDX-License-Identifier: GPL-2.0-or-later
0003 
0004 #pragma once
0005 
0006 #include <QObject>
0007 #include <QProcess>
0008 
0009 class WiFiUtil : public QObject
0010 {
0011     Q_OBJECT
0012 
0013 public:
0014     WiFiUtil(QObject *parent = nullptr);
0015 };