Index: sources/wifi/WifiInterface.h =================================================================== diff -u -re5a802bc26647388cfea4f1d46ae22570ec2dba3 -rea52cee2614f319804690a9b1d5091bed9676753 --- sources/wifi/WifiInterface.h (.../WifiInterface.h) (revision e5a802bc26647388cfea4f1d46ae22570ec2dba3) +++ sources/wifi/WifiInterface.h (.../WifiInterface.h) (revision ea52cee2614f319804690a9b1d5091bed9676753) @@ -6,6 +6,7 @@ // Project #include "main.h" +#include "Network.h" // define #define _WifiInterface WifiInterface::I() @@ -40,7 +41,12 @@ bool doInit(); void doScan(); +signals: + void didAddNetwork(const Network); + void didScanStatusChanged(const bool); + private slots: void onQuit(); void onScanFinished(int, QProcess::ExitStatus); + void onParseWifiScan(const QString &output); };