working connecting and entering password

This commit is contained in:
talksik
2024-02-09 12:50:06 -08:00
parent edefbf5b13
commit 13bf908ab9
6 changed files with 46 additions and 1 deletions
+3
View File
@@ -4,12 +4,15 @@
#include <QObject>
#include <QAbstractListModel>
#include <network.h>
#include <string>
class NetworkManager : public QObject
{
Q_OBJECT
public:
QList<Network> scanForNetworks();
bool isWifiEnabled();
bool connect(std::string ssid, std::string password);
};
#endif // NETWORKMANAGER_H