#ifndef NETWORKMANAGER_H #define NETWORKMANAGER_H #include #include #include #include class NetworkManager : public QObject { Q_OBJECT public: QList scanForNetworks(); bool isWifiEnabled(); bool connect(std::string ssid, std::string password); }; #endif // NETWORKMANAGER_H