Index: sources/device/DeviceController.h =================================================================== diff -u -r6ccee3fdf50b4717096745fb5b3f5ecc91b9cd1b -r5a9b7ff46df9cecc258f7cb18019a51bca76bce3 --- sources/device/DeviceController.h (.../DeviceController.h) (revision 6ccee3fdf50b4717096745fb5b3f5ecc91b9cd1b) +++ sources/device/DeviceController.h (.../DeviceController.h) (revision 5a9b7ff46df9cecc258f7cb18019a51bca76bce3) @@ -113,6 +113,7 @@ QFileSystemWatcher _fileSystemWatcher; + QString _osVersion = ""; QString _macEthernet = ""; QString _macWireless = ""; QString _macBluetooth = ""; @@ -142,13 +143,15 @@ void onEventThreadChange (); /*! - * \brief didPOSTData + * \brief onPOSTData * \details These signals will be emitted when UI is done with the POST and will let DeviceView update its property(ies). + * \param vOSVersion - OS Version * \param vMacEthernet - Ethernet Mac Adress * \param vMacWireless - Wireless Mac Adress * \param vMacBluetooth - Bluetooth Mac Adress * \param vNetCloudSync - CloudSync IP Adress */ + void onPOSTOSVersionData (const QString &vOSVersion ); void onPOSTEthernetData (const QString &vMacAddress); void onPOSTWirelessData (const QString &vMacAddress); void onPOSTBluetoothData (const QString &vMacAddress); @@ -267,6 +270,7 @@ */ void didEventThreadChange (QPrivateSignal); + void didPOSTOSVersionData (const QString &vOSVersion ); void didPOSTEthernetData (const QString &vMacAddress); void didPOSTWirelessData (const QString &vMacAddress); void didPOSTBluetoothData (const QString &vMacAddress);