Index: cppcheck.err =================================================================== diff -u -rfe9459548d7b0f6c1d8cb77c0e23d7a385b48fa2 -rad35b27c3ec3ea357b6173df5ab8793c3378af6e --- cppcheck.err (.../cppcheck.err) (revision fe9459548d7b0f6c1d8cb77c0e23d7a385b48fa2) +++ cppcheck.err (.../cppcheck.err) (revision ad35b27c3ec3ea357b6173df5ab8793c3378af6e) @@ -1,53 +1,35 @@ -02/28/2024 17:22 +01/23/2025 15:31 Dara Navaei sources/canbus/MessageAcknowModel.h:58:9: performance: When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning '_sequence' a value by passing the value to the constructor in the initialization list. [useInitializationList] _sequence = vSequence ; ^ sources/canbus/MessageAcknowModel.h:59:9: performance: When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning '_frameList' a value by passing the value to the constructor in the initialization list. [useInitializationList] _frameList = vFrameList ; ^ -sources/storage/FileHandler.h:108:14: style: Condition '!createFolder' is always false [knownConditionTrueFalse] +sources/storage/FileHandler.h:109:14: style: Condition '!createFolder' is always false [knownConditionTrueFalse] if ( ! createFolder ) { if ( ! dstDir.exists() ) { err = eDstFolderNotExist ; goto lErr; }} ^ -sources/storage/FileHandler.h:100:35: note: Assignment 'createFolder=true', assigned value is 1 +sources/storage/FileHandler.h:101:35: note: Assignment 'createFolder=true', assigned value is 1 bool createFolder = true; ^ -sources/storage/FileHandler.h:108:14: note: Condition '!createFolder' is always false +sources/storage/FileHandler.h:109:14: note: Condition '!createFolder' is always false if ( ! createFolder ) { if ( ! dstDir.exists() ) { err = eDstFolderNotExist ; goto lErr; }} ^ -sources/storage/FileHandler.h:97:17: style: Local variable 'totalSize' shadows outer function [shadowFunction] +sources/storage/FileHandler.h:98:17: style: Local variable 'totalSize' shadows outer function [shadowFunction] qint64 totalSize = 0; ^ -sources/storage/FileHandler.h:78:21: note: Shadowed declaration +sources/storage/FileHandler.h:76:21: note: Shadowed declaration static quint64 totalSize(const QFileInfoList &vFileInfoList); ^ -sources/storage/FileHandler.h:97:17: note: Shadow variable +sources/storage/FileHandler.h:98:17: note: Shadow variable qint64 totalSize = 0; ^ -sources/device/DeviceModels.h:50:21: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] - mString += QString(",%1").arg(param.toString()); - ^ -sources/storage/FileHandler.h:92:33: style: Variable 'err' is assigned a value that is never used. [unreadVariable] +sources/storage/FileHandler.h:93:33: style: Variable 'err' is assigned a value that is never used. [unreadVariable] FileCopyError_Enums err = eOK; ^ -sources/ApplicationPost.cpp:164:9: style: Condition '!ok' is always false [knownConditionTrueFalse] - if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_HD_UI_POST_FAILURE_DISPLAY); - ^ -sources/ApplicationPost.cpp:162:15: note: Assignment 'ok=true', assigned value is 1 - bool ok = true; - ^ -sources/ApplicationPost.cpp:164:9: note: Condition '!ok' is always false - if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_HD_UI_POST_FAILURE_DISPLAY); - ^ -sources/ApplicationPost.cpp:302:9: style: Condition '!ok' is always false [knownConditionTrueFalse] - if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_HD_UI_POST_FAILURE_SOUND); - ^ -sources/ApplicationPost.cpp:300:15: note: Assignment 'ok=true', assigned value is 1 - bool ok = true; - ^ -sources/ApplicationPost.cpp:302:9: note: Condition '!ok' is always false - if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_HD_UI_POST_FAILURE_SOUND); - ^ +main.cpp:500:28: style: Variable 'scriptName' is assigned a value that is never used. [unreadVariable] + QString scriptName = Storage::Device_Lockdown; + ^ sources/MainTimer.cpp:78:16: style: The scope of the variable 'oH' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: void f(int x) { @@ -93,336 +75,72 @@ When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] static int oH,oM,oS; int cH,cM,cS; ^ -sources/cloudsync/CloudSyncController.cpp:493:13: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] - buf += item.toString(); - ^ -sources/cloudsync/CloudSyncController.cpp:266:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] - Errors_Enum error = eError_Unknown; - ^ -sources/cloudsync/CloudSyncController.cpp:301:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] - Errors_Enum error = eError_Unknown; - ^ -sources/cloudsync/CloudSyncController.cpp:597:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] - Errors_Enum error = eError_Unknown; - ^ -sources/cloudsync/CloudSyncController.cpp:652:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] - Errors_Enum error = eError_Unknown; - ^ -sources/cloudsync/CloudSyncController.cpp:661:51: style: Variable 'error' is assigned a value that is never used. [unreadVariable] - if ( isDuplicate(messageID, data) ) { error = eError_Duplicate; args = { messageID }; ok = false; return ok; } // TODO: goto lErr; } don't log it just ignore and return false. - ^ -sources/cloudsync/CloudSyncController.cpp:661:76: style: Variable 'args' is assigned a value that is never used. [unreadVariable] - if ( isDuplicate(messageID, data) ) { error = eError_Duplicate; args = { messageID }; ok = false; return ok; } // TODO: goto lErr; } don't log it just ignore and return false. - ^ -sources/cloudsync/CloudSyncController.cpp:683:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] - Errors_Enum error = eError_Unknown; - ^ -sources/cloudsync/CloudSyncController.cpp:747:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] - Errors_Enum error = eError_Unknown; - ^ -sources/cloudsync/CloudSyncController.cpp:828:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] - Errors_Enum error = eError_Unknown; - ^ -sources/device/DeviceController.cpp:868:41: style: Variable 'err' is assigned a value that is never used. [unreadVariable] - DeviceError::Scripts_Error_Enum err = DeviceError::eDevice_OK; - ^ -sources/device/DeviceView.h:73:32: style: The condition 'vData.mAccepted || !vData.mAccepted && vData.mReason!=0' is equivalent to 'vData.mAccepted || vData.mReason!=0'. [redundantCondition] - return vData.mAccepted || (!vData.mAccepted && vData.mReason != 0 ); - ^ -sources/model/MAbstractDynamic.h:80:5: warning: Member variable 'MAbstractDynamic::_data' is not initialized in the constructor. [uninitMemberVar] - MAbstractDynamic () { } - ^ -sources/model/confirm/MDuetConfirmHDi.h:78:5: warning: Member variable 'MDuetConfirmHDi::_data' is not initialized in the constructor. [uninitMemberVar] - MDuetConfirmHDi () { } - ^ -sources/model/dg/adjustment/settings/MAdjustDGCleaningUsageResponse.h:99:5: warning: Member variable 'MAdjustDGCleaningUsageResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustDGCleaningUsageResponse () { } - ^ -sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.h:75:5: warning: Member variable 'MAdjustDGDateTimeResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustDGDateTimeResponse () { } - ^ -sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.h:74:5: warning: Member variable 'MAdjustServiceDatesDGResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustServiceDatesDGResponse () { } - ^ -sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.h:97:5: warning: Member variable 'MAdjustVersionsDGResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustVersionsDGResponse () { } - ^ -sources/model/dg/adjustment/settings/MDuetRoWaterDG.h:120:5: warning: Member variable 'MDuetRoWaterModeDGr::_data' is not initialized in the constructor. [uninitMemberVar] - MDuetRoWaterModeDGr () { } - ^ -sources/model/dg/data/MDGAccelerometerData.h:103:5: warning: Member variable 'MDGAccelerometer::_data' is not initialized in the constructor. [uninitMemberVar] - MDGAccelerometer () { } - ^ -sources/model/dg/data/MDGConductivityData.h:108:5: warning: Member variable 'MDGConductivityData::_data' is not initialized in the constructor. [uninitMemberVar] - MDGConductivityData () { } - ^ -sources/model/dg/data/MDGDrainPumpData.h:91:5: warning: Member variable 'MDGDrainPump::_data' is not initialized in the constructor. [uninitMemberVar] - MDGDrainPump () { } - ^ -sources/model/dg/data/MDGHeatersData.h:102:5: warning: Member variable 'MDGHeaters::_data' is not initialized in the constructor. [uninitMemberVar] - MDGHeaters () {} - ^ -sources/model/dg/data/MDGLoadCellReadingsData.h:81:5: warning: Member variable 'MDGLoadCellReadings::_data' is not initialized in the constructor. [uninitMemberVar] - MDGLoadCellReadings () {} - ^ -sources/model/dg/data/MDGOperationModeData.h:75:5: warning: Member variable 'MDGOperationMode::_data' is not initialized in the constructor. [uninitMemberVar] - MDGOperationMode () {} - ^ -sources/model/dg/data/MDGPressuresData.h:84:5: warning: Member variable 'MDGPressures::_data' is not initialized in the constructor. [uninitMemberVar] - MDGPressures () {} - ^ -sources/model/dg/data/MDGROPumpData.h:87:5: warning: Member variable 'MDGROPump::_data' is not initialized in the constructor. [uninitMemberVar] - MDGROPump () { } - ^ -sources/model/dg/data/MDGReservoirData.h:104:5: warning: Member variable 'MDGReservoir::_data' is not initialized in the constructor. [uninitMemberVar] - MDGReservoir () {} - ^ -sources/model/dg/data/MDGTemperaturesData.h:142:5: warning: Member variable 'MDGTemperatures::_data' is not initialized in the constructor. [uninitMemberVar] - MDGTemperatures() { } - ^ -sources/model/dg/data/MDGValvesStatesData.h:135:5: warning: Member variable 'MDGValvesStates::_data' is not initialized in the constructor. [uninitMemberVar] - MDGValvesStates () { } - ^ -sources/model/dg/data/post/MDGPostFinalResultData.h:74:5: warning: Member variable 'MDGPostFinalResult::_data' is not initialized in the constructor. [uninitMemberVar] - MDGPostFinalResult() {} - ^ -sources/model/dg/data/post/MDGPostSingleResultData.h:77:5: warning: Member variable 'MDGPostSingleResult::_data' is not initialized in the constructor. [uninitMemberVar] - MDGPostSingleResult() {} - ^ -sources/model/dg/data/pretreatment/MDGFilterFlushData.h:75:5: warning: Member variable 'MDGFilterFlush::_data' is not initialized in the constructor. [uninitMemberVar] - MDGFilterFlush() {} - ^ -sources/model/hd/adjustment/MAdjustPowerOff.h:65:5: warning: Member variable 'MPowerOff::_data' is not initialized in the constructor. [uninitMemberVar] - MPowerOff () { } - ^ -sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.h:76:5: warning: Member variable 'MAdjustDisinfectModeResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustDisinfectModeResponse () { } - ^ -sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.h:76:5: warning: Member variable 'MAdjustDisinfectStartResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustDisinfectStartResponse () { } - ^ -sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.h:77:5: warning: Member variable 'MAdjustDisposablesRemovalConfirmResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustDisposablesRemovalConfirmResponse () { } - ^ -sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustPatientDisconnectionConfirmResponse.h:77:5: warning: Member variable 'MAdjustPatientDisconnectionConfirmResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustPatientDisconnectionConfirmResponse () { } - ^ -sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.h:180:5: warning: Member variable 'MAdjustTreatmentLogResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustTreatmentLogResponse () { } - ^ -sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.h:77:5: warning: Member variable 'MAdjustDisposablesConfirmResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustDisposablesConfirmResponse () { } - ^ -sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.h:77:5: warning: Member variable 'MAdjustDisposablesPrimeResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustDisposablesPrimeResponse () { } - ^ -sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.h:75:5: warning: Member variable 'MAdjustInitTreatmentResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustInitTreatmentResponse () {} - ^ -sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.h:121:5: warning: Member variable 'MAdjustParametersValidationResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustParametersValidationResponse () {} - ^ -sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.h:77:5: warning: Member variable 'MAdjustPatientConnectionBeginResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustPatientConnectionBeginResponse () { } - ^ -sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.h:77:5: warning: Member variable 'MAdjustPatientConnectionConfirmResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustPatientConnectionConfirmResponse () { } - ^ -sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.h:75:5: warning: Member variable 'MAdjustStartTreatmentResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustStartTreatmentResponse () { } - ^ -sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.h:79:5: warning: Member variable 'MAdjustUltrafiltrationInitResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustUltrafiltrationInitResponse () { } - ^ -sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.h:77:5: warning: Member variable 'MAdjustWaterSampleResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustWaterSampleResponse () { } - ^ -sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.h:75:5: warning: Member variable 'MAdjustHDAlarmVolumeResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustHDAlarmVolumeResponse () { } - ^ -sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.h:75:5: warning: Member variable 'MAdjustHDDateTimeResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustHDDateTimeResponse () { } - ^ -sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.h:108:5: warning: Member variable 'MAdjustInstitutionalRecordResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustInstitutionalRecordResponse () { } - ^ -sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.h:74:5: warning: Member variable 'MAdjustServiceDatesHDResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustServiceDatesHDResponse () { } - ^ -sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.h:74:5: warning: Member variable 'MAdjustServiceModeResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustServiceModeResponse () { } - ^ -sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.h:97:5: warning: Member variable 'MAdjustVersionsHDResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustVersionsHDResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.h:81:5: warning: Member variable 'MAdjustBloodDialysateResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustBloodDialysateResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.h:82:5: warning: Member variable 'MAdjustDurationResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustDurationResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.h:77:5: warning: Member variable 'MAdjustTreatmentEndResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustTreatmentEndResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.h:77:5: warning: Member variable 'MAdjustHeparinResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustHeparinResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.h:86:5: warning: Member variable 'MAdjustPressuresLimitsResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustPressuresLimitsResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.h:77:5: warning: Member variable 'MAdjustRecirculateResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustRecirculateResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.h:77:5: warning: Member variable 'MAdjustRinsebackResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustRinsebackResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.h:80:5: warning: Member variable 'MAdjustSalineResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustSalineResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.h:82:5: warning: Member variable 'MAdjustUltrafiltrationConfirmResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustUltrafiltrationConfirmResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.h:85:5: warning: Member variable 'MAdjustUltrafiltrationEditResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustUltrafiltrationEditResponse () { } - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.h:67:14: warning: The class 'MAdjustUltrafiltrationEditResponse' defines member variable with name 'stringPrefix' also defined in its parent class 'MAdjustUltrafiltrationConfirmResponse'. [duplInheritedMember] - QString stringPrefix = "AdjustUFEdit"; - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.h:61:14: note: Parent variable 'MAdjustUltrafiltrationConfirmResponse::stringPrefix' - QString stringPrefix = "AdjustUFConfirm"; - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.h:67:14: note: Derived variable 'MAdjustUltrafiltrationEditResponse::stringPrefix' - QString stringPrefix = "AdjustUFEdit"; - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.h:82:7: warning: The class 'MAdjustUltrafiltrationEditResponse' defines member variable with name '_data' also defined in its parent class 'MAdjustUltrafiltrationConfirmResponse'. [duplInheritedMember] - } _data; - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.h:79:7: note: Parent variable 'MAdjustUltrafiltrationConfirmResponse::_data' - } _data; - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.h:82:7: note: Derived variable 'MAdjustUltrafiltrationEditResponse::_data' - } _data; - ^ -sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.h:78:5: warning: Member variable 'MAdjustUltrafiltrationStateResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAdjustUltrafiltrationStateResponse() { } - ^ -sources/model/hd/alarm/MAlarmActiveList.h:133:5: warning: Member variable 'MAlarmActiveListResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MAlarmActiveListResponse () { } - ^ -sources/model/hd/alarm/MAlarmCleared.h:72:5: warning: Member variable 'MAlarmCleared::_data' is not initialized in the constructor. [uninitMemberVar] - MAlarmCleared () { } - ^ -sources/model/hd/alarm/MAlarmClearedCondition.h:73:5: warning: Member variable 'MAlarmClearedCondition::_data' is not initialized in the constructor. [uninitMemberVar] - MAlarmClearedCondition () { } - ^ -sources/model/hd/alarm/MAlarmStatusData.h:86:5: warning: Member variable 'MAlarmStatus::_data' is not initialized in the constructor. [uninitMemberVar] - MAlarmStatus() { } - ^ -sources/model/hd/alarm/MAlarmTriggered.h:99:5: warning: Member variable 'MAlarmTriggered::_xata' is not initialized in the constructor. [uninitMemberVar] - MAlarmTriggered () { } - ^ -sources/model/hd/alarm/MAlarmTriggered.h:65:18: style: The function 'parameters' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride] - QVariantList parameters() const; +sources/StateController.cpp:10:18: warning: Member variable 'StateController::_isBroadcastListReady' is not initialized in the constructor. [uninitMemberVarPrivate] +StateController::StateController(QObject *parent) : QObject(parent) {} ^ -sources/model/MAbstract.h:139:26: note: Virtual function in base class - virtual QVariantList parameters () const = 0; - ^ -sources/model/hd/alarm/MAlarmTriggered.h:65:18: note: Function in derived class - QVariantList parameters() const; +sources/StateController.cpp:10:18: warning: Member variable 'StateController::_isSendListReady' is not initialized in the constructor. [uninitMemberVarPrivate] +StateController::StateController(QObject *parent) : QObject(parent) {} ^ -sources/model/hd/data/MHDAccelerometerData.h:103:5: warning: Member variable 'MHDAccelerometer::_data' is not initialized in the constructor. [uninitMemberVar] - MHDAccelerometer () { } - ^ -sources/model/hd/data/MHDAirBubbleData.h:77:5: warning: Member variable 'MHDAirBubbleData::_data' is not initialized in the constructor. [uninitMemberVar] - MHDAirBubbleData () { } - ^ -sources/model/hd/data/MHDAirTrapData.h:83:5: warning: Member variable 'MHDAirTrapData::_data' is not initialized in the constructor. [uninitMemberVar] - MHDAirTrapData () { } - ^ -sources/model/hd/data/MHDBloodLeakData.h:77:5: warning: Member variable 'MHDBloodLeakData::_data' is not initialized in the constructor. [uninitMemberVar] - MHDBloodLeakData () { } - ^ -sources/model/hd/data/MHDOperationModeData.h:75:5: warning: Member variable 'MHDOperationMode::_data' is not initialized in the constructor. [uninitMemberVar] - MHDOperationMode () {} - ^ -sources/model/hd/data/MHDSyringePumpData.h:106:5: warning: Member variable 'MHDSyringePump::_data' is not initialized in the constructor. [uninitMemberVar] - MHDSyringePump () { } - ^ -sources/model/hd/data/MHDUsageInfoResponse.h:84:5: warning: Member variable 'MHDUsageInfoResponse::_data' is not initialized in the constructor. [uninitMemberVar] - MHDUsageInfoResponse () {} - ^ -sources/model/hd/data/MTreatmentRangesData.h:87:5: warning: Member variable 'MTreatmentRanges::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentRanges () { } - ^ -sources/model/hd/data/post/MHDPostFinalResultData.h:74:5: warning: Member variable 'MHDPostFinalResult::_data' is not initialized in the constructor. [uninitMemberVar] - MHDPostFinalResult() {} - ^ -sources/model/hd/data/post/MHDPostSingleResultData.h:77:5: warning: Member variable 'MHDPostSingleResult::_data' is not initialized in the constructor. [uninitMemberVar] - MHDPostSingleResult() {} - ^ -sources/model/hd/data/post/MHDRTCEpochData.h:74:5: warning: Member variable 'MHDRTCEpochData::_data' is not initialized in the constructor. [uninitMemberVar] - MHDRTCEpochData () { } - ^ -sources/model/hd/data/posttreatment/MPostTreatmentStatesData.h:77:5: warning: Member variable 'MPostTreatmentStates::_data' is not initialized in the constructor. [uninitMemberVar] - MPostTreatmentStates() { } - ^ -sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.h:72:5: warning: Member variable 'MPreTreatmentDisposablesPrime::_data' is not initialized in the constructor. [uninitMemberVar] - MPreTreatmentDisposablesPrime() { } - ^ -sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.h:75:5: warning: Member variable 'MPreTreatmentSelfTestDry::_data' is not initialized in the constructor. [uninitMemberVar] - MPreTreatmentSelfTestDry() { } - ^ -sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.h:75:5: warning: Member variable 'MPreTreatmentSelfTestNoCartridge::_data' is not initialized in the constructor. [uninitMemberVar] - MPreTreatmentSelfTestNoCartridge () { } - ^ -sources/model/hd/data/pretreatment/MPreTreatmentStatesData.h:111:5: warning: Member variable 'MPreTreatmentStates::_data' is not initialized in the constructor. [uninitMemberVar] - MPreTreatmentStates() { } - ^ -sources/model/hd/data/treatment/MTreatmentBloodFlowData.h:93:5: warning: Member variable 'MBloodFlow::_data' is not initialized in the constructor. [uninitMemberVar] - MBloodFlow() { } - ^ -sources/model/hd/data/treatment/MTreatmentBloodPrimeData.h:76:5: warning: Member variable 'MTreatmentBloodPrime::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentBloodPrime () { } - ^ -sources/model/hd/data/treatment/MTreatmentDialysateFlowData.h:95:5: warning: Member variable 'MDialysateFlow::_data' is not initialized in the constructor. [uninitMemberVar] - MDialysateFlow() { } - ^ -sources/model/hd/data/treatment/MTreatmentHeparinData.h:78:5: warning: Member variable 'MTreatmentHeparin::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentHeparin () { } - ^ -sources/model/hd/data/treatment/MTreatmentOutletFlowData.h:108:5: warning: Member variable 'MOutletFlow::_data' is not initialized in the constructor. [uninitMemberVar] - MOutletFlow () { } - ^ -sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.h:93:5: warning: Member variable 'MPressureOcclusion::_data' is not initialized in the constructor. [uninitMemberVar] - MPressureOcclusion () { } - ^ -sources/model/hd/data/treatment/MTreatmentRecirculateData.h:78:5: warning: Member variable 'MTreatmentRecirculate::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentRecirculate () { } - ^ -sources/model/hd/data/treatment/MTreatmentRinsebackData.h:90:5: warning: Member variable 'MTreatmentRinseback::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentRinseback () { } - ^ -sources/model/hd/data/treatment/MTreatmentSalineData.h:81:5: warning: Member variable 'MTreatmentSaline::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentSaline () { } - ^ -sources/model/hd/data/treatment/MTreatmentStatesData.h:110:5: warning: Member variable 'MTreatmentStates::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentStates() { } - ^ -sources/model/hd/data/treatment/MTreatmentStopData.h:76:5: warning: Member variable 'MTreatmentStop::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentStop () { } - ^ -sources/model/hd/data/treatment/MTreatmentTimeData.h:79:5: warning: Member variable 'MTreatmentTime::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentTime () { } - ^ -sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.h:81:5: warning: Member variable 'MTreatmentLogAlarmData::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentLogAlarmData() { } - ^ -sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.h:90:5: warning: Member variable 'MTreatmentLogAvrgeData::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentLogAvrgeData() { } - ^ -sources/model/hd/data/treatmentlog/MTreatmentLogEventData.h:81:5: warning: Member variable 'MTreatmentLogEventData::_data' is not initialized in the constructor. [uninitMemberVar] - MTreatmentLogEventData() { } - ^ +sources/StateController.cpp:10:18: warning: Member variable 'StateController::_treatmentVars' is not initialized in the constructor. [uninitMemberVarPrivate] +StateController::StateController(QObject *parent) : QObject(parent) {} + ^ +sources/StateController.cpp:10:18: warning: Member variable 'StateController::_treatmentParams' is not initialized in the constructor. [uninitMemberVarPrivate] +StateController::StateController(QObject *parent) : QObject(parent) {} + ^ +sources/StateController.cpp:10:18: warning: Member variable 'StateController::_hasUserConfirmedToProceed' is not initialized in the constructor. [uninitMemberVarPrivate] +StateController::StateController(QObject *parent) : QObject(parent) {} + ^ +sources/canbus/MessageDispatcher.cpp:254:9: style: Condition 'mNeedsAcknow' is always false [knownConditionTrueFalse] + if (mNeedsAcknow) { + ^ +sources/canbus/MessageDispatcher.cpp:253:25: note: Assignment 'mNeedsAcknow=false', assigned value is 0 + bool mNeedsAcknow = false; //needsAcknow(vCanId); + ^ +sources/canbus/MessageDispatcher.cpp:254:9: note: Condition 'mNeedsAcknow' is always false + if (mNeedsAcknow) { + ^ +sources/canbus/MessageDispatcher.cpp:266:9: style: Condition 'mNeedsAcknow' is always false [knownConditionTrueFalse] + if (mNeedsAcknow) { + ^ +sources/canbus/MessageDispatcher.cpp:253:25: note: Assignment 'mNeedsAcknow=false', assigned value is 0 + bool mNeedsAcknow = false; //needsAcknow(vCanId); + ^ +sources/canbus/MessageDispatcher.cpp:266:9: note: Condition 'mNeedsAcknow' is always false + if (mNeedsAcknow) { + ^ +sources/canbus/MessageDispatcher.cpp:308:9: style: Condition 'mNeedsAcknow' is always false [knownConditionTrueFalse] + if (mNeedsAcknow) { + ^ +sources/canbus/MessageDispatcher.cpp:307:25: note: Assignment 'mNeedsAcknow=false', assigned value is 0 + bool mNeedsAcknow = false; //needsAcknow(vCanId); + ^ +sources/canbus/MessageDispatcher.cpp:308:9: note: Condition 'mNeedsAcknow' is always false + if (mNeedsAcknow) { + ^ +sources/canbus/MessageDispatcher.cpp:326:9: style: Condition 'mNeedsAcknow' is always false [knownConditionTrueFalse] + if (mNeedsAcknow) { + ^ +sources/canbus/MessageDispatcher.cpp:307:25: note: Assignment 'mNeedsAcknow=false', assigned value is 0 + bool mNeedsAcknow = false; //needsAcknow(vCanId); + ^ +sources/canbus/MessageDispatcher.cpp:326:9: note: Condition 'mNeedsAcknow' is always false + if (mNeedsAcknow) { + ^ +sources/canbus/MessageDispatcher.cpp:395:19: style: The scope of the variable 'mActionId' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: +void f(int x) +{ + int i = 0; + if (x) { + // it's safe to move 'int i = 0;' here + for (int n = 0; n < 10; ++n) { + // it is possible but not safe to move 'int i = 0;' here + do_something(&i); + } + } +} +When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] + int mActionId = 0; + ^ sources/model/settings/MSettings.cpp:45:15: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] mKeys += keyValue.key(); ^ @@ -432,28 +150,25 @@ sources/model/settings/MSettings.cpp:91:0: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] if ( vKey == keyValue.key() ) return keyValue.val(); ^ -sources/storage/Logger.cpp:43:5: performance: When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning '_logFileNamePrefix' a value by passing the value to the constructor in the initialization list. [useInitializationList] - _logFileNamePrefix = QFileInfo(qApp->applicationFilePath()).baseName(); - ^ -sources/storage/Logger.cpp:236:9: style: Condition 'vUseTempPath' is always false [knownConditionTrueFalse] +sources/storage/Logger.cpp:222:9: style: Condition 'vUseTempPath' is always false [knownConditionTrueFalse] if (vUseTempPath) { ^ -sources/storage/Logger.cpp:233:20: note: Assignment 'vUseTempPath=false', assigned value is 0 +sources/storage/Logger.cpp:219:20: note: Assignment 'vUseTempPath=false', assigned value is 0 vUseTempPath = false; ^ -sources/storage/Logger.cpp:236:9: note: Condition 'vUseTempPath' is always false +sources/storage/Logger.cpp:222:9: note: Condition 'vUseTempPath' is always false if (vUseTempPath) { ^ -sources/storage/Logger.cpp:256:10: style: Condition 'ok' is always true [knownConditionTrueFalse] +sources/storage/Logger.cpp:242:10: style: Condition 'ok' is always true [knownConditionTrueFalse] if ( ok && ! setLogPath(LogType::eLogAppED) ) ok = false; ^ -sources/storage/Logger.cpp:255:15: note: Assignment 'ok=true', assigned value is 1 +sources/storage/Logger.cpp:241:15: note: Assignment 'ok=true', assigned value is 1 bool ok = true; ^ -sources/storage/Logger.cpp:256:10: note: Condition 'ok' is always true +sources/storage/Logger.cpp:242:10: note: Condition 'ok' is always true if ( ok && ! setLogPath(LogType::eLogAppED) ) ok = false; ^ -sources/storage/Logger.cpp:194:17: style: The scope of the variable 'notified' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: +sources/storage/Logger.cpp:180:17: style: The scope of the variable 'notified' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: void f(int x) { int i = 0; @@ -468,15 +183,15 @@ When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] static bool notified = false; ^ -sources/storage/Settings.cpp:34:13: style: Variable 'err' is assigned a value that is never used. [unreadVariable] - int err = Settings::Settings_Error::eError_None; +sources/storage/Settings.cpp:90:9: style: Redundant initialization for 'err'. The initialized value is overwritten before it is read. [redundantInitialization] + err = readCategory(eConfigurationsLocale); + ^ +sources/storage/Settings.cpp:89:13: note: err is initialized + int err = Settings_Error::eError_None; ^ -sources/storage/TreatmentLog.cpp:192:41: style: Variable 'mTreatmentDurationFmt' is assigned a value that is never used. [unreadVariable] - QString mTreatmentDurationFmt = QTime (0, 0).addSecs(int(vData.mTreatmentDuration )).toString(_timeFormat); - ^ -sources/storage/TreatmentLog.cpp:193:41: style: Variable 'mActualTreatmentDurationFmt' is assigned a value that is never used. [unreadVariable] - QString mActualTreatmentDurationFmt = QTime (0, 0).addSecs(int(vData.mActualTreatmentDuration )).toString(_timeFormat); - ^ +sources/storage/Settings.cpp:90:9: note: err is overwritten + err = readCategory(eConfigurationsLocale); + ^ sources/utility/format.cpp:98:19: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] mData += fromVariant(item); ^ @@ -486,90 +201,24 @@ sources/utility/qrcodegen.cpp:651:5: style: Consider using std::count_if algorithm instead of a raw loop. [useStlAlgorithm] dark++; ^ -sources/view/settings/VNetworkModel.h:75:14: warning: Virtual function 'rowCount' is called from constructor 'VNetworkModel(QAbstractListModel*parent=nullptr)' at line 28. Dynamic binding is not used. [virtualCallInConstructor] - int rowCount (const QModelIndex &parent = QModelIndex() ) const override; - ^ -sources/view/settings/VNetworkModel.cpp:28:5: note: Calling initConnections - initConnections(); - ^ -sources/view/settings/VNetworkModel.cpp:72:38: note: Calling doScan - &_WifiInterface, SLOT( doScan())); - ^ -sources/view/settings/VNetworkModel.cpp:205:5: note: Calling removeAllRows - removeAllRows(); - ^ -sources/view/settings/VNetworkModel.cpp:118:39: note: Calling rowCount - beginRemoveRows(QModelIndex(), 0, rowCount()); - ^ -sources/view/settings/VNetworkModel.h:75:14: note: rowCount is a virtual function - int rowCount (const QModelIndex &parent = QModelIndex() ) const override; - ^ -sources/view/settings/VNetworkModel.cpp:265:9: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] - { - ^ -sources/view/settings/VNetworkModel.cpp:283:9: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] - { - ^ -sources/view/settings/VSettings.cpp:199:17: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] - keyList += keys.join(""); - ^ -unittests/tst_messaging.cpp:294:18: style: Variable 'msg.actionId' is reassigned a value before the old one has been used. [redundantAssignment] - msg.actionId = Gui::GuiActionType::ID_RawData; - ^ -unittests/tst_messaging.cpp:279:18: note: msg.actionId is assigned - msg.actionId = Gui::GuiActionType::ID_AlarmTriggered; - ^ -unittests/tst_messaging.cpp:294:18: note: msg.actionId is overwritten - msg.actionId = Gui::GuiActionType::ID_RawData; - ^ -unittests/tst_views.cpp:711:26: style: Variable 'action' is assigned a value that is never used. [unreadVariable] - GuiActionType action = GuiActionType::ID_AdjustParametersValidationRsp; - ^ -unittests/tst_views.cpp:406:0: style: The function 'VCreateTreatment_check_init' is never used. [unusedFunction] +sources/storage/StorageGlobals.cpp:155:0: style: The function 'Scripts_Path_Name' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:660:0: style: The function 'VCreateTreatment_enums' is never used. [unusedFunction] +sources/storage/FileHandler.cpp:124:0: style: The function 'backupFile' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:708:0: style: The function 'VCreateTreatment_fw_validation_response' is never used. [unusedFunction] +sources/model/settings/MSettings.cpp:113:0: style: The function 'categorys' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:676:0: style: The function 'VCreateTreatment_json' is never used. [unusedFunction] +sources/storage/Logger.cpp:405:0: style: The function 'concurrentExportIsOk' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:778:0: style: The function 'VCreateTreatment_load_parameter_ranges' is never used. [unusedFunction] +sources/storage/Settings.cpp:222:0: style: The function 'configurationsMove' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:602:0: style: The function 'VCreateTreatment_save' is never used. [unusedFunction] +sources/utility/encryption.cpp:154:0: style: The function 'configurationsPassword' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:581:0: style: The function 'VCreateTreatment_save_csv' is never used. [unusedFunction] - -^ -unittests/tst_views.cpp:71:0: style: The function 'VCreateTreatment_validation' is never used. [unusedFunction] - -^ -unittests/tst_views.cpp:231:0: style: The function 'VCreateTreatment_validation_ranges' is never used. [unusedFunction] - -^ -unittests/tst_views.cpp:42:0: style: The function 'VTreatmentAdjustmentUltrafiltrationState_text' is never used. [unusedFunction] - -^ -unittests/tst_views.cpp:28:0: style: The function 'VTreatmentAdjustmentsResponse_text_NoReason' is never used. [unusedFunction] - -^ -unittests/tst_views.cpp:35:0: style: The function 'VTreatmentAdjustmentsResponse_text_WAReason' is never used. [unusedFunction] - -^ -sources/view/settings/VSettings.cpp:323:0: style: The function 'checkServicePasswordSet' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:312:0: style: The function 'cleanup' is never used. [unusedFunction] - -^ -unittests/tst_acknow.cpp:164:0: style: The function 'cleanupTestCase' is never used. [unusedFunction] - -^ sources/utility/encryption.cpp:42:0: style: The function 'cryptClose' is never used. [unusedFunction] ^ @@ -579,168 +228,24 @@ sources/utility/encryption.cpp:30:0: style: The function 'cryptOpen' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.cpp:49:0: style: The function 'doBegin' is never used. [unusedFunction] +sources/model/settings/MSettings.cpp:155:0: style: The function 'datetimeFormat' is never used. [unusedFunction] ^ -sources/view/VTreatmentCreate.cpp:84:0: style: The function 'doCancel' is never used. [unusedFunction] +sources/utility/qrcodegen.cpp:247:0: style: The function 'encodeText' is never used. [unusedFunction] ^ -sources/view/settings/VNetworkModel.cpp:246:0: style: The function 'doCheckIfConnected' is never used. [unusedFunction] +sources/utility/types.cpp:28:0: style: The function 'floatCompare' is never used. [unusedFunction] ^ -sources/view/hd/alarm/VAlarmStatus.cpp:95:0: style: The function 'doClearCondition' is never used. [unusedFunction] +sources/utility/format.cpp:204:0: style: The function 'fromEpoch' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp:83:0: style: The function 'doConfirmDisconnect' is never used. [unusedFunction] +sources/utility/format.cpp:216:0: style: The function 'fromVariantList' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp:59:0: style: The function 'doConfirmReconnect' is never used. [unusedFunction] +sources/utility/types.cpp:44:0: style: The function 'getBits' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:90:0: style: The function 'doDisinfectCancel' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:138:0: style: The function 'doDisinfectChemFlush' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:129:0: style: The function 'doDisinfectChemical' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:101:0: style: The function 'doDisinfectClear' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:152:0: style: The function 'doDisinfectConfirm' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:111:0: style: The function 'doDisinfectFlush' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:120:0: style: The function 'doDisinfectHeat' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:78:0: style: The function 'doDisinfectInitiate' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:147:0: style: The function 'doDisinfectROPermeate' is never used. [unusedFunction] - -^ -sources/gui/GuiView.cpp:258:0: style: The function 'doExportListInsert' is never used. [unusedFunction] - -^ -sources/gui/GuiView.cpp:301:0: style: The function 'doExportListPercent' is never used. [unusedFunction] - -^ -sources/gui/GuiView.cpp:289:0: style: The function 'doExportListSelect' is never used. [unusedFunction] - -^ -sources/gui/GuiView.cpp:418:0: style: The function 'doGenerateQRImage' is never used. [unusedFunction] - -^ -sources/view/VTreatmentCreate(legacy).cpp:504:0: style: The function 'doGetPrescriptionParameterValues' is never used. [unusedFunction] - -^ -sources/view/settings/VDateTime.cpp:59:0: style: The function 'doInit' is never used. [unusedFunction] - -^ -sources/device/DeviceView.cpp:136:0: style: The function 'doInitBluetoothPairedQuery' is never used. [unusedFunction] - -^ -sources/device/DeviceView.cpp:111:0: style: The function 'doInitBluetoothPairedReset' is never used. [unusedFunction] - -^ -sources/device/DeviceView.cpp:37:0: style: The function 'doInitBrightness' is never used. [unusedFunction] - -^ -sources/device/DeviceView.cpp:71:0: style: The function 'doInitCryptSetup' is never used. [unusedFunction] - -^ -sources/device/DeviceView.cpp:225:0: style: The function 'doInitDecommission' is never used. [unusedFunction] - -^ -sources/device/DeviceView.cpp:196:0: style: The function 'doInitFactoryReset' is never used. [unusedFunction] - -^ -sources/device/DeviceView.cpp:161:0: style: The function 'doInitRootSSHAccess' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp:49:0: style: The function 'doInitiate' is never used. [unusedFunction] - -^ -sources/view/VEventSpy.cpp:149:0: style: The function 'doMouseReset' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp:35:0: style: The function 'doNotify' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp:66:0: style: The function 'doOptionDuration' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp:54:0: style: The function 'doOptionRate' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp:41:0: style: The function 'doPause' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.cpp:49:0: style: The function 'doPrime' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp:51:0: style: The function 'doReconnect' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.cpp:54:0: style: The function 'doRequest' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp:99:0: style: The function 'doReset' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp:64:0: style: The function 'doResult' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp:51:0: style: The function 'doResume' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp:51:0: style: The function 'doSample' is never used. [unusedFunction] - -^ -sources/view/settings/VNetworkModel.cpp:370:0: style: The function 'doSetDNS' is never used. [unusedFunction] - -^ -sources/view/settings/VNetworkModel.cpp:352:0: style: The function 'doSetGateway' is never used. [unusedFunction] - -^ -sources/view/settings/VNetworkModel.cpp:343:0: style: The function 'doSetIPAddress' is never used. [unusedFunction] - -^ -sources/view/settings/VNetworkModel.cpp:361:0: style: The function 'doSetSubnetMask' is never used. [unusedFunction] - -^ -sources/view/hd/alarm/VAlarmStatus.cpp:78:0: style: The function 'doSilence' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp:87:0: style: The function 'doSkip' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp:58:0: style: The function 'doStop' is never used. [unusedFunction] - -^ -sources/view/VEventSpy.cpp:192:0: style: The function 'doTouchReset' is never used. [unusedFunction] - -^ -sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp:75:0: style: The function 'doTreatmentEnd' is never used. [unusedFunction] - -^ -sources/view/hd/alarm/VAlarmStatus.cpp:57:0: style: The function 'doUserActionEnd' is never used. [unusedFunction] - -^ -sources/view/hd/alarm/VAlarmStatus.cpp:67:0: style: The function 'doUserActionOk' is never used. [unusedFunction] - -^ -sources/view/hd/alarm/VAlarmStatus.cpp:37:0: style: The function 'doUserActionResume' is never used. [unusedFunction] - -^ -sources/view/hd/alarm/VAlarmStatus.cpp:47:0: style: The function 'doUserActionRinseback' is never used. [unusedFunction] - -^ sources/utility/qrcodegen.cpp:372:0: style: The function 'getErrorCorrectionLevel' is never used. [unusedFunction] ^ @@ -750,671 +255,80 @@ sources/utility/qrcodegen.cpp:362:0: style: The function 'getVersion' is never used. [unusedFunction] ^ -unittests/tst_canbus.cpp:31:0: style: The function 'initTestCase' is never used. [unusedFunction] +sources/utility/encryption.cpp:127:0: style: The function 'isDefaultServicePassword' is never used. [unusedFunction] ^ -unittests/tst_canbus.cpp:35:0: style: The function 'initTestCase_data' is never used. [unusedFunction] +sources/storage/FileHandler.cpp:261:0: style: The function 'isMounted' is never used. [unusedFunction] ^ -sources/view/hd/alarm/VAlarmStatus.cpp:205:0: style: The function 'instructionKeys' is never used. [unusedFunction] +sources/storage/Settings.cpp:256:0: style: The function 'loadTranslation' is never used. [unusedFunction] ^ -sources/view/hd/alarm/VAlarmStatus.cpp:206:0: style: The function 'instructionValues' is never used. [unusedFunction] +main.cpp:494:0: style: The function 'lockdown' is never used. [unusedFunction] ^ -sources/view/settings/VSettings.cpp:256:0: style: The function 'isPasswordValid' is never used. [unusedFunction] +sources/canbus/MessageInterpreter.cpp:149:0: style: The function 'logInvalidLength' is never used. [unusedFunction] ^ -sources/view/settings/VSettings.cpp:298:0: style: The function 'isServicePasswordMatch' is never used. [unusedFunction] - -^ -main.cpp:417:0: style: The function 'lockdown' is never used. [unusedFunction] - -^ -unittests/tst_logging.cpp:66:0: style: The function 'logDatum' is never used. [unusedFunction] - -^ -unittests/tst_logging.cpp:74:0: style: The function 'logError' is never used. [unusedFunction] - -^ -unittests/tst_logging.cpp:119:0: style: The function 'logError_Unhandled_TreatmentStates' is never used. [unusedFunction] - -^ -unittests/tst_logging.cpp:91:0: style: The function 'logError_gDisableUnhandledReport_False' is never used. [unusedFunction] - -^ -unittests/tst_logging.cpp:106:0: style: The function 'logError_gDisableUnhandledReport_True' is never used. [unusedFunction] - -^ -unittests/tst_logging.cpp:58:0: style: The function 'logEvent' is never used. [unusedFunction] - -^ -unittests/tst_logging.cpp:82:0: style: The function 'logUnknown' is never used. [unusedFunction] - -^ sources/utility/qrcodegen.cpp:143:0: style: The function 'makeEci' is never used. [unusedFunction] ^ -sources/bluetooth/BluetoothInterface.cpp:1209:0: style: The function 'mimic' is never used. [unusedFunction] - -^ sources/utility/encryption.cpp:48:0: style: The function 'mkfsExt4' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:170:0: style: The function 'moveFolder' is never used. [unusedFunction] +sources/storage/FileHandler.cpp:162:0: style: The function 'moveFolder' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:149:0: style: The function 'readUnknown' is never used. [unusedFunction] +sources/ApplicationController.cpp:182:0: style: The function 'onActionReceive' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:211:0: style: The function 'removeFiles' is never used. [unusedFunction] +sources/storage/Logger.cpp:254:0: style: The function 'onCryptSetupMount' is never used. [unusedFunction] ^ -sources/bluetooth/BluetoothInterface.cpp:1289:0: style: The function 'requestBattery' is never used. [unusedFunction] +sources/storage/Logger.cpp:418:0: style: The function 'onExportLogs' is never used. [unusedFunction] ^ -sources/bluetooth/BluetoothInterface.cpp:1276:0: style: The function 'requestInformation' is never used. [unusedFunction] +sources/ApplicationController.cpp:423:0: style: The function 'onQuitApplication' is never used. [unusedFunction] ^ -sources/bluetooth/BluetoothInterface.cpp:1257:0: style: The function 'requestMeasurements' is never used. [unusedFunction] +sources/storage/Logger.cpp:540:0: style: The function 'onSDCardSpaceChange' is never used. [unusedFunction] ^ -sources/view/settings/VBluetooth.cpp:79:0: style: The function 'roleNames' is never used. [unusedFunction] +sources/storage/Logger.cpp:518:0: style: The function 'onSDCardStateChange' is never used. [unusedFunction] ^ -sources/device/DeviceController.cpp:274:0: style: The function 'sdcardSpaceCheck' is never used. [unusedFunction] +sources/storage/Logger.cpp:579:0: style: The function 'onSettingsPartitionSpaceChange' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:135:0: style: The function 'setLogPath_F' is never used. [unusedFunction] +sources/storage/Logger.cpp:562:0: style: The function 'onSettingsPartitionStateChange' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:142:0: style: The function 'setLogPath_T' is never used. [unusedFunction] +sources/storage/Settings.cpp:87:0: style: The function 'readLocale' is never used. [unusedFunction] ^ -sources/device/DeviceController.cpp:375:0: style: The function 'settingsPartitionSpaceCheck' is never used. [unusedFunction] +sources/storage/FileHandler.cpp:203:0: style: The function 'removeFiles' is never used. [unusedFunction] ^ -sources/MainTimer.cpp:137:0: style: The function 'timerEvent' is never used. [unusedFunction] +sources/storage/Settings.cpp:177:0: style: The function 'save' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:303:0: style: The function 'tmpUsable' is never used. [unusedFunction] +sources/storage/FileHandler.cpp:466:0: style: The function 'sha256sum' is never used. [unusedFunction] ^ -unittests/tst_acknow.cpp:62:0: style: The function 'tst_AcknowModel_Init' is never used. [unusedFunction] +sources/model/settings/MSettings.cpp:146:0: style: The function 'systemLanguage' is never used. [unusedFunction] ^ -unittests/tst_acknow.cpp:89:0: style: The function 'tst_AcknowModel_Receive_Acknow' is never used. [unusedFunction] +sources/MainTimer.cpp:137:0: style: The function 'timerEvent' is never used. [unusedFunction] ^ -unittests/tst_acknow.cpp:71:0: style: The function 'tst_AcknowModel_Receive_Normal' is never used. [unusedFunction] +sources/storage/FileHandler.cpp:295:0: style: The function 'tmpUsable' is never used. [unusedFunction] ^ -unittests/tst_acknow.cpp:118:0: style: The function 'tst_AcknowModel_Transmit_Acknow' is never used. [unusedFunction] +sources/utility/format.cpp:181:0: style: The function 'toStringList' is never used. [unusedFunction] ^ -unittests/tst_acknow.cpp:107:0: style: The function 'tst_AcknowModel_Transmit_Normal' is never used. [unusedFunction] +sources/utility/encryption.cpp:54:0: style: The function 'varSalt' is never used. [unusedFunction] ^ -unittests/tst_acknow.cpp:134:0: style: The function 'tst_AcknowModel_onAcknowReceive_Correct' is never used. [unusedFunction] - -^ -unittests/tst_acknow.cpp:157:0: style: The function 'tst_AcknowModel_onAcknowReceive_Incorrect' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:739:0: style: The function 'tst_AlarmGenerator_setBits_OutOfRange' is never used. [unusedFunction] - -^ -unittests/tst_initializations.cpp:30:0: style: The function 'tst_ApplicationController_init' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:45:0: style: The function 'tst_CanInterface_Connect_Error_Interface' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:55:0: style: The function 'tst_CanInterface_Connect_NoError' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:631:0: style: The function 'tst_DGDrainPumpData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:617:0: style: The function 'tst_DGDrainPumpData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:792:0: style: The function 'tst_DGHeatersData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:774:0: style: The function 'tst_DGHeatersData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:842:0: style: The function 'tst_DGLoadCellReadingsData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:820:0: style: The function 'tst_DGLoadCellReadingsData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:668:0: style: The function 'tst_DGOperationMode' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:658:0: style: The function 'tst_DGOperationMode_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:588:0: style: The function 'tst_DGPressuresData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:566:0: style: The function 'tst_DGPressuresData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:538:0: style: The function 'tst_DGROPumpData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:520:0: style: The function 'tst_DGROPumpData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:712:0: style: The function 'tst_DGReservoirData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:694:0: style: The function 'tst_DGReservoirData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:925:0: style: The function 'tst_DGTemperaturesData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:871:0: style: The function 'tst_DGTemperaturesData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:748:0: style: The function 'tst_DGValvesStates' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:740:0: style: The function 'tst_DGValvesStates_data' is never used. [unusedFunction] - -^ -unittests/tst_initializations.cpp:35:0: style: The function 'tst_DeviceController_init' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:85:0: style: The function 'tst_FrameInterface_ActionTransmit_KeepAlive' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:115:0: style: The function 'tst_FrameInterface_ActionTransmit_PowerOff' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:99:0: style: The function 'tst_FrameInterface_ActionTransmit_PowerOff_Accepted' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:107:0: style: The function 'tst_FrameInterface_ActionTransmit_PowerOff_Rejected' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:123:0: style: The function 'tst_FrameInterface_ActionTransmit_Raw' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:134:0: style: The function 'tst_FrameInterface_ActionTransmit_ShortPayload' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:142:0: style: The function 'tst_FrameInterface_ActionTransmit_Unknown' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:201:0: style: The function 'tst_FrameInterface_FrameReceived_CRC_Error' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:188:0: style: The function 'tst_FrameInterface_FrameReceived_Channel_Incorrect' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:175:0: style: The function 'tst_FrameInterface_FrameReceived_Channel_NotListen' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:279:0: style: The function 'tst_FrameInterface_FrameReceived_LongFrame_AlarmStatus_LessData' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:240:0: style: The function 'tst_FrameInterface_FrameReceived_LongFrame_BloodFlow' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:260:0: style: The function 'tst_FrameInterface_FrameReceived_LongFrame_BloodFlow_LessData' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:227:0: style: The function 'tst_FrameInterface_FrameReceived_LongFrame_Error' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:149:0: style: The function 'tst_FrameInterface_FrameReceived_PowerOff' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:162:0: style: The function 'tst_FrameInterface_FrameReceived_PowerOff_Timeout' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:214:0: style: The function 'tst_FrameInterface_FrameReceived_ShortFrame_Error' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:302:0: style: The function 'tst_FrameInterface_FrameReceived_removeHead_EmptyList' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:67:0: style: The function 'tst_FrameInterface_Init' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:79:0: style: The function 'tst_FrameInterface_ReInit' is never used. [unusedFunction] - -^ -unittests/tst_canbus.cpp:92:0: style: The function 'tst_FrameInterface_TransmitFrame_LongerData' is never used. [unusedFunction] - -^ -unittests/tst_initializations.cpp:40:0: style: The function 'tst_FrameInterface_init' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:95:0: style: The function 'tst_MAdjustBloodDialysateResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:72:0: style: The function 'tst_MAdjustBloodDialysateResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:206:0: style: The function 'tst_MAdjustDurationResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:183:0: style: The function 'tst_MAdjustDurationResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1787:0: style: The function 'tst_MAdjustInitTreatmentResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1772:0: style: The function 'tst_MAdjustInitTreatmentResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:487:0: style: The function 'tst_MAdjustPressuresLimitsResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:456:0: style: The function 'tst_MAdjustPressuresLimitsResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:426:0: style: The function 'tst_MAdjustUltrafiltrationConfirmResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:399:0: style: The function 'tst_MAdjustUltrafiltrationConfirmResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:366:0: style: The function 'tst_MAdjustUltrafiltrationEditResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:327:0: style: The function 'tst_MAdjustUltrafiltrationEditResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:254:0: style: The function 'tst_MAdjustUltrafiltrationInitResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:235:0: style: The function 'tst_MAdjustUltrafiltrationInitResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:300:0: style: The function 'tst_MAdjustUltrafiltrationStateResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:281:0: style: The function 'tst_MAdjustUltrafiltrationStateResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1974:0: style: The function 'tst_MAdjustmentTreatmentParametersRequest' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1936:0: style: The function 'tst_MAlarmAcknowledgeRequest' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1494:0: style: The function 'tst_MAlarmCleared' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1484:0: style: The function 'tst_MAlarmCleared_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1418:0: style: The function 'tst_MAlarmStatus' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1394:0: style: The function 'tst_MAlarmStatus_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1379:0: style: The function 'tst_MAlarmStatus_text' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1458:0: style: The function 'tst_MAlarmTriggered' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1448:0: style: The function 'tst_MAlarmTriggered_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1149:0: style: The function 'tst_MBloodFlowData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1115:0: style: The function 'tst_MBloodFlowData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1952:0: style: The function 'tst_MConfirmTreatmentRequest' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1215:0: style: The function 'tst_MDialysateFlowData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1181:0: style: The function 'tst_MDialysateFlowData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1960:0: style: The function 'tst_MEndTreatmentRequest' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1825:0: style: The function 'tst_MEndTreatmentResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1814:0: style: The function 'tst_MEndTreatmentResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1023:0: style: The function 'tst_MHDOperationModeData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1013:0: style: The function 'tst_MHDOperationModeData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1912:0: style: The function 'tst_MHeparinResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1898:0: style: The function 'tst_MHeparinResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1944:0: style: The function 'tst_MInitTreatmentRequest' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1083:0: style: The function 'tst_MOutletFlowData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1049:0: style: The function 'tst_MOutletFlowData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1356:0: style: The function 'tst_MPowerOff' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1349:0: style: The function 'tst_MPowerOff_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1745:0: style: The function 'tst_MPreTreatmentPrime' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1730:0: style: The function 'tst_MPreTreatmentPrime_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1319:0: style: The function 'tst_MPressureOcclusionData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1293:0: style: The function 'tst_MPressureOcclusionData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1870:0: style: The function 'tst_MSalineBolusResponse' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1852:0: style: The function 'tst_MSalineBolusResponse_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1704:0: style: The function 'tst_MTreatmentHeparinData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1694:0: style: The function 'tst_MTreatmentHeparinData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1600:0: style: The function 'tst_MTreatmentParametersResp' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1520:0: style: The function 'tst_MTreatmentParametersResp_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:153:0: style: The function 'tst_MTreatmentRanges' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:122:0: style: The function 'tst_MTreatmentRanges_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1665:0: style: The function 'tst_MTreatmentSalineBolusData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1647:0: style: The function 'tst_MTreatmentSalineBolusData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:984:0: style: The function 'tst_MTreatmentStateData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:962:0: style: The function 'tst_MTreatmentStateData_data' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1265:0: style: The function 'tst_MTreatmentTimeData' is never used. [unusedFunction] - -^ -unittests/tst_models.cpp:1247:0: style: The function 'tst_MTreatmentTimeData_data' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:600:0: style: The function 'tst_MessageBuilder_addActionId' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:627:0: style: The function 'tst_MessageBuilder_addData_LongerThanMax' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:614:0: style: The function 'tst_MessageBuilder_addData_shorterLen' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:666:0: style: The function 'tst_MessageBuilder_buildFrames_addActionId' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:679:0: style: The function 'tst_MessageBuilder_buildFrames_addData' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:692:0: style: The function 'tst_MessageBuilder_buildFrames_eLenCanFrame' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:643:0: style: The function 'tst_MessageBuilder_checkCRC' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:655:0: style: The function 'tst_MessageBuilder_getHeader' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:715:0: style: The function 'tst_MessageDispatcher_actionTransmit' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:727:0: style: The function 'tst_MessageDispatcher_actionTransmit_Unknown' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:274:0: style: The function 'tst_MessageInterpreter_HD_emptyMessages' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:162:0: style: The function 'tst_MessageInterpreter_adjustBloodDialysateData_isType' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:176:0: style: The function 'tst_MessageInterpreter_adjustBloodDialysateData_payloadLen' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:190:0: style: The function 'tst_MessageInterpreter_adjustDurationData_isType' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:204:0: style: The function 'tst_MessageInterpreter_adjustDurationData_payloadLen' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:246:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationConfirmData_isType' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:260:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationConfirmData_payloadLen' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:218:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationEditData_isType' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:232:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationEditData_payloadLen' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:87:0: style: The function 'tst_MessageInterpreter_bloodFlowData' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:386:0: style: The function 'tst_MessageInterpreter_canbusFaultCountData_isType' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:400:0: style: The function 'tst_MessageInterpreter_canbusFaultCountData_payloadLen' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:102:0: style: The function 'tst_MessageInterpreter_dialysateInletFlowData' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:117:0: style: The function 'tst_MessageInterpreter_dialysateOutletFlowData' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:451:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustBloodDialysateReq' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:465:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustDurationReq' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:563:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustHeparinReq' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:572:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustPressuresReq' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:549:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustSalineReq' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:535:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationConfirmReq' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:521:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationEditReq' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:493:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationInitReq' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:507:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationStateReq' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:479:0: style: The function 'tst_MessageInterpreter_interpretMessage_AlarmSilenceReq' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:586:0: style: The function 'tst_MessageInterpreter_interpretMessage_CANBusFaultCount' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:423:0: style: The function 'tst_MessageInterpreter_interpretMessage_DG_Unhandled' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:415:0: style: The function 'tst_MessageInterpreter_interpretMessage_String' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:47:0: style: The function 'tst_MessageInterpreter_isPayloadLenValid' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:60:0: style: The function 'tst_MessageInterpreter_isPayloadLenValid_undefined' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:33:0: style: The function 'tst_MessageInterpreter_isType' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:330:0: style: The function 'tst_MessageInterpreter_loadCellReadingsData_isType' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:344:0: style: The function 'tst_MessageInterpreter_loadCellReadingsData_payloadLen' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:435:0: style: The function 'tst_MessageInterpreter_notify_fromByteArray' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:73:0: style: The function 'tst_MessageInterpreter_powerOffData' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:147:0: style: The function 'tst_MessageInterpreter_pressureOcclusionData' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:358:0: style: The function 'tst_MessageInterpreter_temperatureSensorsData_isType' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:372:0: style: The function 'tst_MessageInterpreter_temperatureSensorsData_payloadLen' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:302:0: style: The function 'tst_MessageInterpreter_treatmentRangesData_isType' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:316:0: style: The function 'tst_MessageInterpreter_treatmentRangesData_payloadLen' is never used. [unusedFunction] - -^ -unittests/tst_messaging.cpp:132:0: style: The function 'tst_MessageInterpreter_treatmentTime' is never used. [unusedFunction] - -^ -unittests/tst_threads.cpp:36:0: style: The function 'tst_Thread_init' is never used. [unusedFunction] - -^ -unittests/tst_threads.cpp:48:0: style: The function 'tst_Thread_names' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:35:0: style: The function 'tst_floatCompare_isMatch' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:30:0: style: The function 'tst_floatCompare_noMatch' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:172:0: style: The function 'tst_fromvariant_Bool_False' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:164:0: style: The function 'tst_fromvariant_Bool_True' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:72:0: style: The function 'tst_fromvariant_ByteArray' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:83:0: style: The function 'tst_fromvariant_Float' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:116:0: style: The function 'tst_fromvariant_Int_Neg' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:105:0: style: The function 'tst_fromvariant_Int_Pos' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:67:0: style: The function 'tst_fromvariant_IsString' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:127:0: style: The function 'tst_fromvariant_List' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:56:0: style: The function 'tst_fromvariant_NoString' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:94:0: style: The function 'tst_fromvariant_UInt' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:180:0: style: The function 'tst_fromvariant_Undefined' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:264:0: style: The function 'tst_getValue_len_eq' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:281:0: style: The function 'tst_getValue_len_gt' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:238:0: style: The function 'tst_getValue_len_log' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:249:0: style: The function 'tst_getValue_len_lt' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:48:0: style: The function 'tst_getbits_IsError' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:40:0: style: The function 'tst_getbits_NoError' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:312:0: style: The function 'tst_safeIncrement_GtMaxValue_Step1' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:305:0: style: The function 'tst_safeIncrement_GtMaxValue_Step10' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:298:0: style: The function 'tst_safeIncrement_StepZero' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:188:0: style: The function 'tst_toStringList_Default' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:221:0: style: The function 'tst_toStringList_Prefix' is never used. [unusedFunction] - -^ -unittests/tst_utilities.cpp:204:0: style: The function 'tst_toStringList_RemoveDuplicate' is never used. [unusedFunction] - -^ -sources/view/settings/VSettings.cpp:318:0: style: The function 'updateServicePassword' is never used. [unusedFunction] - -^ -sources/device/DeviceController.cpp:253:0: style: The function 'usbCheck' is never used. [unusedFunction] - -^ -sources/wifi/WifiInterface.cpp:936:0: style: The function 'variantListToSecurityTypes' is never used. [unusedFunction] - -^ nofile:0:0: information: Cppcheck cannot find all the include files. Cppcheck can check the code without the include files found. But the results will probably be more accurate if all the include files are found. Please check your project's include directories and add all of them as include directories for Cppcheck. To see what files Cppcheck cannot find use --check-config. [missingInclude] Index: cppcheck.log =================================================================== diff -u -rfe9459548d7b0f6c1d8cb77c0e23d7a385b48fa2 -rad35b27c3ec3ea357b6173df5ab8793c3378af6e --- cppcheck.log (.../cppcheck.log) (revision fe9459548d7b0f6c1d8cb77c0e23d7a385b48fa2) +++ cppcheck.log (.../cppcheck.log) (revision ad35b27c3ec3ea357b6173df5ab8793c3378af6e) @@ -1,1591 +1,177 @@ -02/28/2024 17:22 +01/23/2025 15:31 Dara Navaei +(information) Couldn't find path given by -I './/sources/bluetooth/' +(information) Couldn't find path given by -I './/sources/cloudsync/' +(information) Couldn't find path given by -I './/sources/device/' +(information) Couldn't find path given by -I './/sources/gui/' +(information) Couldn't find path given by -I './/sources/view/' +(information) Couldn't find path given by -I './/sources/wifi/' +(information) Couldn't find path given by -I './/unittests/' Checking main.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking main.cpp: Q_PROPERTY=1;Q_ENUM=1... -1/227 files checked 1% done -Checking sources/AlarmGenerator.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/AlarmGenerator.cpp: Q_PROPERTY=1;Q_ENUM=1... -2/227 files checked 1% done +1/24 files checked 8% done Checking sources/ApplicationController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/ApplicationController.cpp: Q_PROPERTY=1;Q_ENUM=1... -3/227 files checked 3% done +2/24 files checked 12% done Checking sources/ApplicationPost.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/ApplicationPost.cpp: Q_PROPERTY=1;Q_ENUM=1... -4/227 files checked 4% done +3/24 files checked 13% done Checking sources/MainTimer.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/MainTimer.cpp: Q_PROPERTY=1;Q_ENUM=1... -5/227 files checked 4% done -Checking sources/Threads.cpp ... +4/24 files checked 14% done +Checking sources/StateController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native -Checking sources/Threads.cpp: Q_PROPERTY=1;Q_ENUM=1... -6/227 files checked 5% done -Checking sources/bluetooth/BluetoothInterface.cpp ... +Checking sources/StateController.cpp: Q_PROPERTY=1;Q_ENUM=1... +5/24 files checked 33% done +Checking sources/Threads.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native -Checking sources/bluetooth/BluetoothInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -7/227 files checked 9% done +Checking sources/Threads.cpp: Q_PROPERTY=1;Q_ENUM=1... +6/24 files checked 34% done Checking sources/canbus/CanInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/canbus/CanInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -8/227 files checked 10% done +7/24 files checked 39% done Checking sources/canbus/FrameInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/canbus/FrameInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -9/227 files checked 11% done +8/24 files checked 43% done Checking sources/canbus/MessageAcknowModel.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/canbus/MessageAcknowModel.cpp: Q_PROPERTY=1;Q_ENUM=1... -10/227 files checked 11% done +9/24 files checked 45% done Checking sources/canbus/MessageBuilder.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/canbus/MessageBuilder.cpp: Q_PROPERTY=1;Q_ENUM=1... -11/227 files checked 12% done +10/24 files checked 51% done Checking sources/canbus/MessageDispatcher.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/canbus/MessageDispatcher.cpp: Q_PROPERTY=1;Q_ENUM=1... -12/227 files checked 15% done +11/24 files checked 56% done Checking sources/canbus/MessageInterpreter.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/canbus/MessageInterpreter.cpp: Q_PROPERTY=1;Q_ENUM=1... -13/227 files checked 19% done -Checking sources/cloudsync/CloudSyncController.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/cloudsync/CloudSyncController.cpp: Q_PROPERTY=1;Q_ENUM=1... -14/227 files checked 22% done -Checking sources/device/DeviceController.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/device/DeviceController.cpp: Q_PROPERTY=1;Q_ENUM=1... -15/227 files checked 25% done -Checking sources/device/DeviceError.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/device/DeviceError.cpp: Q_PROPERTY=1;Q_ENUM=1... -16/227 files checked 25% done -Checking sources/device/DeviceModels.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/device/DeviceModels.cpp: Q_PROPERTY=1;Q_ENUM=1... -17/227 files checked 26% done -Checking sources/device/DeviceView.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/device/DeviceView.cpp: Q_PROPERTY=1;Q_ENUM=1... -18/227 files checked 27% done -Checking sources/gui/GuiController.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/gui/GuiController.cpp: Q_PROPERTY=1;Q_ENUM=1... -19/227 files checked 28% done -Checking sources/gui/GuiGlobals.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/gui/GuiGlobals.cpp: Q_PROPERTY=1;Q_ENUM=1... -20/227 files checked 28% done -Checking sources/gui/GuiView.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/gui/GuiView.cpp: Q_PROPERTY=1;Q_ENUM=1... -21/227 files checked 29% done +12/24 files checked 63% done Checking sources/model/MAbstract.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/model/MAbstract.cpp: Q_PROPERTY=1;Q_ENUM=1... -22/227 files checked 29% done -Checking sources/model/MAbstractDynamic.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/MAbstractDynamic.cpp: Q_PROPERTY=1;Q_ENUM=1... -23/227 files checked 30% done -Checking sources/model/confirm/MDuetConfirmHDi.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/confirm/MDuetConfirmHDi.cpp: Q_PROPERTY=1;Q_ENUM=1... -24/227 files checked 30% done -Checking sources/model/dg/adjustment/settings/MAdjustDGCleaningUsageResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/adjustment/settings/MAdjustDGCleaningUsageResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -25/227 files checked 30% done -Checking sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -26/227 files checked 30% done -Checking sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -27/227 files checked 30% done -Checking sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -28/227 files checked 30% done -Checking sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -29/227 files checked 30% done -Checking sources/model/dg/adjustment/settings/MDuetRoWaterDG.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/adjustment/settings/MDuetRoWaterDG.cpp: Q_PROPERTY=1;Q_ENUM=1... -30/227 files checked 31% done -Checking sources/model/dg/data/MDGAccelerometerData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -31/227 files checked 31% done -Checking sources/model/dg/data/MDGConductivityData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGConductivityData.cpp: Q_PROPERTY=1;Q_ENUM=1... -32/227 files checked 31% done -Checking sources/model/dg/data/MDGDebugText.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGDebugText.cpp: Q_PROPERTY=1;Q_ENUM=1... -33/227 files checked 31% done -Checking sources/model/dg/data/MDGDrainPumpData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGDrainPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -34/227 files checked 31% done -Checking sources/model/dg/data/MDGGeneralEvent.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... -35/227 files checked 31% done -Checking sources/model/dg/data/MDGHeatersData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGHeatersData.cpp: Q_PROPERTY=1;Q_ENUM=1... -36/227 files checked 32% done -Checking sources/model/dg/data/MDGLoadCellReadingsData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGLoadCellReadingsData.cpp: Q_PROPERTY=1;Q_ENUM=1... -37/227 files checked 32% done -Checking sources/model/dg/data/MDGOperationModeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -38/227 files checked 32% done -Checking sources/model/dg/data/MDGPressuresData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGPressuresData.cpp: Q_PROPERTY=1;Q_ENUM=1... -39/227 files checked 32% done -Checking sources/model/dg/data/MDGROPumpData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGROPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -40/227 files checked 32% done -Checking sources/model/dg/data/MDGReservoirData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGReservoirData.cpp: Q_PROPERTY=1;Q_ENUM=1... -41/227 files checked 32% done -Checking sources/model/dg/data/MDGTemperaturesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGTemperaturesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -42/227 files checked 33% done -Checking sources/model/dg/data/MDGValvesStatesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/MDGValvesStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -43/227 files checked 33% done -Checking sources/model/dg/data/post/MDGPostFinalResultData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/post/MDGPostFinalResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -44/227 files checked 33% done -Checking sources/model/dg/data/post/MDGPostSingleResultData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/post/MDGPostSingleResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -45/227 files checked 33% done -Checking sources/model/dg/data/pretreatment/MDGFilterFlushData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/dg/data/pretreatment/MDGFilterFlushData.cpp: Q_PROPERTY=1;Q_ENUM=1... -46/227 files checked 33% done -Checking sources/model/hd/adjustment/MAdjustPowerOff.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/MAdjustPowerOff.cpp: Q_PROPERTY=1;Q_ENUM=1... -47/227 files checked 33% done -Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -48/227 files checked 33% done -Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -49/227 files checked 34% done -Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -50/227 files checked 34% done -Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustPatientDisconnectionConfirmResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustPatientDisconnectionConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -51/227 files checked 34% done -Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -52/227 files checked 35% done -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -53/227 files checked 35% done -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -54/227 files checked 35% done -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -55/227 files checked 35% done -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -56/227 files checked 35% done -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -57/227 files checked 35% done -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -58/227 files checked 36% done -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -59/227 files checked 36% done -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -60/227 files checked 36% done -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -61/227 files checked 36% done -Checking sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -62/227 files checked 36% done -Checking sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -63/227 files checked 36% done -Checking sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -64/227 files checked 37% done -Checking sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -65/227 files checked 37% done -Checking sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -66/227 files checked 37% done -Checking sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -67/227 files checked 37% done -Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.cpp: Q_PROPERTY=1;Q_ENUM=1... -68/227 files checked 37% done -Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -69/227 files checked 37% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -70/227 files checked 37% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -71/227 files checked 37% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -72/227 files checked 38% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -73/227 files checked 38% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -74/227 files checked 38% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -75/227 files checked 38% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -76/227 files checked 38% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -77/227 files checked 38% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -78/227 files checked 38% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -79/227 files checked 38% done -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -80/227 files checked 39% done -Checking sources/model/hd/alarm/MAlarmActiveList.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/alarm/MAlarmActiveList.cpp: Q_PROPERTY=1;Q_ENUM=1... -81/227 files checked 39% done -Checking sources/model/hd/alarm/MAlarmCleared.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/alarm/MAlarmCleared.cpp: Q_PROPERTY=1;Q_ENUM=1... -82/227 files checked 39% done -Checking sources/model/hd/alarm/MAlarmClearedCondition.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/alarm/MAlarmClearedCondition.cpp: Q_PROPERTY=1;Q_ENUM=1... -83/227 files checked 39% done -Checking sources/model/hd/alarm/MAlarmMapping.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/alarm/MAlarmMapping.cpp: Q_PROPERTY=1;Q_ENUM=1... -84/227 files checked 45% done -Checking sources/model/hd/alarm/MAlarmStatusData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/alarm/MAlarmStatusData.cpp: Q_PROPERTY=1;Q_ENUM=1... -85/227 files checked 45% done -Checking sources/model/hd/alarm/MAlarmTriggered.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/alarm/MAlarmTriggered.cpp: Q_PROPERTY=1;Q_ENUM=1... -86/227 files checked 46% done -Checking sources/model/hd/data/MHDAccelerometerData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/MHDAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -87/227 files checked 46% done -Checking sources/model/hd/data/MHDAirBubbleData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/MHDAirBubbleData.cpp: Q_PROPERTY=1;Q_ENUM=1... -88/227 files checked 46% done -Checking sources/model/hd/data/MHDAirTrapData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/MHDAirTrapData.cpp: Q_PROPERTY=1;Q_ENUM=1... -89/227 files checked 46% done -Checking sources/model/hd/data/MHDBloodLeakData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/MHDBloodLeakData.cpp: Q_PROPERTY=1;Q_ENUM=1... -90/227 files checked 46% done -Checking sources/model/hd/data/MHDDebugText.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/MHDDebugText.cpp: Q_PROPERTY=1;Q_ENUM=1... -91/227 files checked 46% done -Checking sources/model/hd/data/MHDGeneralEvent.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/MHDGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... -92/227 files checked 46% done -Checking sources/model/hd/data/MHDOperationModeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/MHDOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -93/227 files checked 46% done -Checking sources/model/hd/data/MHDSyringePumpData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/MHDSyringePumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -94/227 files checked 47% done -Checking sources/model/hd/data/MHDUsageInfoResponse.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/MHDUsageInfoResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -95/227 files checked 47% done -Checking sources/model/hd/data/MTreatmentRangesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/MTreatmentRangesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -96/227 files checked 47% done -Checking sources/model/hd/data/post/MHDPostFinalResultData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/post/MHDPostFinalResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -97/227 files checked 47% done -Checking sources/model/hd/data/post/MHDPostSingleResultData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/post/MHDPostSingleResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -98/227 files checked 47% done -Checking sources/model/hd/data/post/MHDRTCEpochData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/post/MHDRTCEpochData.cpp: Q_PROPERTY=1;Q_ENUM=1... -99/227 files checked 47% done -Checking sources/model/hd/data/post/MUIPostFinalResultHDRequest.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/post/MUIPostFinalResultHDRequest.cpp: Q_PROPERTY=1;Q_ENUM=1... -100/227 files checked 47% done -Checking sources/model/hd/data/posttreatment/MPostTreatmentStatesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/posttreatment/MPostTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -101/227 files checked 47% done -Checking sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -102/227 files checked 47% done -Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.cpp: Q_PROPERTY=1;Q_ENUM=1... -103/227 files checked 47% done -Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -104/227 files checked 48% done -Checking sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -105/227 files checked 48% done -Checking sources/model/hd/data/treatment/MTreatmentBloodFlowData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentBloodFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... -106/227 files checked 48% done -Checking sources/model/hd/data/treatment/MTreatmentBloodPrimeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentBloodPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -107/227 files checked 48% done -Checking sources/model/hd/data/treatment/MTreatmentDialysateFlowData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentDialysateFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... -108/227 files checked 48% done -Checking sources/model/hd/data/treatment/MTreatmentHeparinData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentHeparinData.cpp: Q_PROPERTY=1;Q_ENUM=1... -109/227 files checked 48% done -Checking sources/model/hd/data/treatment/MTreatmentOutletFlowData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentOutletFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... -110/227 files checked 49% done -Checking sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.cpp: Q_PROPERTY=1;Q_ENUM=1... -111/227 files checked 49% done -Checking sources/model/hd/data/treatment/MTreatmentRecirculateData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentRecirculateData.cpp: Q_PROPERTY=1;Q_ENUM=1... -112/227 files checked 49% done -Checking sources/model/hd/data/treatment/MTreatmentRinsebackData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentRinsebackData.cpp: Q_PROPERTY=1;Q_ENUM=1... -113/227 files checked 49% done -Checking sources/model/hd/data/treatment/MTreatmentSalineData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentSalineData.cpp: Q_PROPERTY=1;Q_ENUM=1... -114/227 files checked 49% done -Checking sources/model/hd/data/treatment/MTreatmentStatesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -115/227 files checked 49% done -Checking sources/model/hd/data/treatment/MTreatmentStopData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentStopData.cpp: Q_PROPERTY=1;Q_ENUM=1... -116/227 files checked 50% done -Checking sources/model/hd/data/treatment/MTreatmentTimeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatment/MTreatmentTimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -117/227 files checked 50% done -Checking sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.cpp: Q_PROPERTY=1;Q_ENUM=1... -118/227 files checked 50% done -Checking sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -119/227 files checked 50% done -Checking sources/model/hd/data/treatmentlog/MTreatmentLogEventData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/hd/data/treatmentlog/MTreatmentLogEventData.cpp: Q_PROPERTY=1;Q_ENUM=1... -120/227 files checked 50% done +13/24 files checked 64% done Checking sources/model/settings/MBluetooth.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/model/settings/MBluetooth.cpp: Q_PROPERTY=1;Q_ENUM=1... -121/227 files checked 50% done +14/24 files checked 65% done Checking sources/model/settings/MSettings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/model/settings/MSettings.cpp: Q_PROPERTY=1;Q_ENUM=1... -122/227 files checked 50% done -Checking sources/model/ui/data/MUIBloodPressureData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/model/ui/data/MUIBloodPressureData.cpp: Q_PROPERTY=1;Q_ENUM=1... -123/227 files checked 51% done +15/24 files checked 66% done Checking sources/storage/FileHandler.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/storage/FileHandler.cpp: Q_PROPERTY=1;Q_ENUM=1... -124/227 files checked 52% done +16/24 files checked 72% done Checking sources/storage/Logger.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/storage/Logger.cpp: Q_PROPERTY=1;Q_ENUM=1... -125/227 files checked 54% done +17/24 files checked 79% done Checking sources/storage/Settings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/storage/Settings.cpp: Q_PROPERTY=1;Q_ENUM=1... -126/227 files checked 54% done +18/24 files checked 82% done Checking sources/storage/StorageGlobals.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/storage/StorageGlobals.cpp: Q_PROPERTY=1;Q_ENUM=1... -127/227 files checked 55% done -Checking sources/storage/TreatmentLog.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/storage/TreatmentLog.cpp: Q_PROPERTY=1;Q_ENUM=1... -128/227 files checked 57% done +19/24 files checked 86% done Checking sources/utility/crc.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/utility/crc.cpp: Q_PROPERTY=1;Q_ENUM=1... -129/227 files checked 57% done +20/24 files checked 87% done Checking sources/utility/encryption.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/utility/encryption.cpp: Q_PROPERTY=1;Q_ENUM=1... -130/227 files checked 57% done +21/24 files checked 89% done Checking sources/utility/format.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/utility/format.cpp: Q_PROPERTY=1;Q_ENUM=1... -131/227 files checked 58% done +22/24 files checked 90% done Checking sources/utility/qrcodegen.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/utility/qrcodegen.cpp: Q_PROPERTY=1;Q_ENUM=1... -132/227 files checked 60% done +23/24 files checked 99% done Checking sources/utility/types.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Includes: -I.//sources/ -I.//sources/canbus/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ Platform:Native Checking sources/utility/types.cpp: Q_PROPERTY=1;Q_ENUM=1... -133/227 files checked 60% done -Checking sources/view/VAdjustmentResponseBase.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/VAdjustmentResponseBase.cpp: Q_PROPERTY=1;Q_ENUM=1... -134/227 files checked 60% done -Checking sources/view/VEventSpy.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/VEventSpy.cpp: Q_PROPERTY=1;Q_ENUM=1... -135/227 files checked 60% done -Checking sources/view/VGeneralEvent.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/VGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... -136/227 files checked 61% done -Checking sources/view/VTreatmentCreate(legacy).cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/VTreatmentCreate(legacy).cpp: Q_PROPERTY=1;Q_ENUM=1... -137/227 files checked 63% done -Checking sources/view/VTreatmentCreate.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/VTreatmentCreate.cpp: Q_PROPERTY=1;Q_ENUM=1... -138/227 files checked 63% done -Checking sources/view/confirm/VConfirm.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/confirm/VConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -139/227 files checked 64% done -Checking sources/view/dg/data/VDGAccelerometerData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -140/227 files checked 64% done -Checking sources/view/dg/data/VDGConductivityData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGConductivityData.cpp: Q_PROPERTY=1;Q_ENUM=1... -141/227 files checked 64% done -Checking sources/view/dg/data/VDGDrainPumpData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGDrainPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -142/227 files checked 64% done -Checking sources/view/dg/data/VDGHeatersData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGHeatersData.cpp: Q_PROPERTY=1;Q_ENUM=1... -143/227 files checked 64% done -Checking sources/view/dg/data/VDGLoadCellReadingsData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGLoadCellReadingsData.cpp: Q_PROPERTY=1;Q_ENUM=1... -144/227 files checked 64% done -Checking sources/view/dg/data/VDGOperationModeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -145/227 files checked 64% done -Checking sources/view/dg/data/VDGPressuresData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGPressuresData.cpp: Q_PROPERTY=1;Q_ENUM=1... -146/227 files checked 64% done -Checking sources/view/dg/data/VDGROPumpData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGROPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -147/227 files checked 64% done -Checking sources/view/dg/data/VDGReservoirData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGReservoirData.cpp: Q_PROPERTY=1;Q_ENUM=1... -148/227 files checked 64% done -Checking sources/view/dg/data/VDGTemperaturesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGTemperaturesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -149/227 files checked 65% done -Checking sources/view/dg/data/VDGValvesStatesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/VDGValvesStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -150/227 files checked 65% done -Checking sources/view/dg/data/post/VDGPOSTData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/post/VDGPOSTData.cpp: Q_PROPERTY=1;Q_ENUM=1... -151/227 files checked 65% done -Checking sources/view/dg/data/pretreatment/VDGFilterFlushData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/dg/data/pretreatment/VDGFilterFlushData.cpp: Q_PROPERTY=1;Q_ENUM=1... -152/227 files checked 65% done -Checking sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp: Q_PROPERTY=1;Q_ENUM=1... -153/227 files checked 65% done -Checking sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp: Q_PROPERTY=1;Q_ENUM=1... -154/227 files checked 66% done -Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -155/227 files checked 66% done -Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -156/227 files checked 66% done -Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.cpp: Q_PROPERTY=1;Q_ENUM=1... -157/227 files checked 67% done -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -158/227 files checked 67% done -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -159/227 files checked 67% done -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.cpp: Q_PROPERTY=1;Q_ENUM=1... -160/227 files checked 67% done -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp: Q_PROPERTY=1;Q_ENUM=1... -161/227 files checked 67% done -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.cpp: Q_PROPERTY=1;Q_ENUM=1... -162/227 files checked 67% done -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -163/227 files checked 67% done -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.cpp: Q_PROPERTY=1;Q_ENUM=1... -164/227 files checked 67% done -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.cpp: Q_PROPERTY=1;Q_ENUM=1... -165/227 files checked 68% done -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp: Q_PROPERTY=1;Q_ENUM=1... -166/227 files checked 68% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.cpp: Q_PROPERTY=1;Q_ENUM=1... -167/227 files checked 68% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.cpp: Q_PROPERTY=1;Q_ENUM=1... -168/227 files checked 68% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.cpp: Q_PROPERTY=1;Q_ENUM=1... -169/227 files checked 68% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp: Q_PROPERTY=1;Q_ENUM=1... -170/227 files checked 68% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentPressuresLimits.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentPressuresLimits.cpp: Q_PROPERTY=1;Q_ENUM=1... -171/227 files checked 68% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp: Q_PROPERTY=1;Q_ENUM=1... -172/227 files checked 69% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.cpp: Q_PROPERTY=1;Q_ENUM=1... -173/227 files checked 69% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp: Q_PROPERTY=1;Q_ENUM=1... -174/227 files checked 69% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -175/227 files checked 69% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.cpp: Q_PROPERTY=1;Q_ENUM=1... -176/227 files checked 69% done -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp: Q_PROPERTY=1;Q_ENUM=1... -177/227 files checked 69% done -Checking sources/view/hd/alarm/VAlarmActiveList.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/alarm/VAlarmActiveList.cpp: Q_PROPERTY=1;Q_ENUM=1... -178/227 files checked 70% done -Checking sources/view/hd/alarm/VAlarmStatus.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/alarm/VAlarmStatus.cpp: Q_PROPERTY=1;Q_ENUM=1... -179/227 files checked 70% done -Checking sources/view/hd/data/VHDAccelerometerData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/VHDAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -180/227 files checked 70% done -Checking sources/view/hd/data/VHDAirBubbleData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/VHDAirBubbleData.cpp: Q_PROPERTY=1;Q_ENUM=1... -181/227 files checked 70% done -Checking sources/view/hd/data/VHDAirTrapData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/VHDAirTrapData.cpp: Q_PROPERTY=1;Q_ENUM=1... -182/227 files checked 70% done -Checking sources/view/hd/data/VHDBloodLeakData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/VHDBloodLeakData.cpp: Q_PROPERTY=1;Q_ENUM=1... -183/227 files checked 71% done -Checking sources/view/hd/data/VHDOperationModeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/VHDOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -184/227 files checked 71% done -Checking sources/view/hd/data/VHDSyringePumpData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/VHDSyringePumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -185/227 files checked 71% done -Checking sources/view/hd/data/VTreatmentRanges.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/VTreatmentRanges.cpp: Q_PROPERTY=1;Q_ENUM=1... -186/227 files checked 72% done -Checking sources/view/hd/data/post/VHDPOSTData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/post/VHDPOSTData.cpp: Q_PROPERTY=1;Q_ENUM=1... -187/227 files checked 72% done -Checking sources/view/hd/data/posttreatment/VPostTreatmentStatesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/posttreatment/VPostTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -188/227 files checked 72% done -Checking sources/view/hd/data/pretreatment/VPreTreatmentDisposablesPrimeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/pretreatment/VPreTreatmentDisposablesPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -189/227 files checked 72% done -Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestDryData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestDryData.cpp: Q_PROPERTY=1;Q_ENUM=1... -190/227 files checked 72% done -Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestNoCartridgeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestNoCartridgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -191/227 files checked 72% done -Checking sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -192/227 files checked 73% done -Checking sources/view/hd/data/treatment/VHDTreatmentStatesData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VHDTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -193/227 files checked 74% done -Checking sources/view/hd/data/treatment/VTreatmentBloodFlow.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentBloodFlow.cpp: Q_PROPERTY=1;Q_ENUM=1... -194/227 files checked 74% done -Checking sources/view/hd/data/treatment/VTreatmentBloodPrimeData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentBloodPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -195/227 files checked 75% done -Checking sources/view/hd/data/treatment/VTreatmentDialysateFlow.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentDialysateFlow.cpp: Q_PROPERTY=1;Q_ENUM=1... -196/227 files checked 75% done -Checking sources/view/hd/data/treatment/VTreatmentHeparinData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentHeparinData.cpp: Q_PROPERTY=1;Q_ENUM=1... -197/227 files checked 75% done -Checking sources/view/hd/data/treatment/VTreatmentPressureOcclusion.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentPressureOcclusion.cpp: Q_PROPERTY=1;Q_ENUM=1... -198/227 files checked 75% done -Checking sources/view/hd/data/treatment/VTreatmentRecirculateData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentRecirculateData.cpp: Q_PROPERTY=1;Q_ENUM=1... -199/227 files checked 75% done -Checking sources/view/hd/data/treatment/VTreatmentRinsebackData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentRinsebackData.cpp: Q_PROPERTY=1;Q_ENUM=1... -200/227 files checked 75% done -Checking sources/view/hd/data/treatment/VTreatmentSalineData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentSalineData.cpp: Q_PROPERTY=1;Q_ENUM=1... -201/227 files checked 75% done -Checking sources/view/hd/data/treatment/VTreatmentStopData.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentStopData.cpp: Q_PROPERTY=1;Q_ENUM=1... -202/227 files checked 75% done -Checking sources/view/hd/data/treatment/VTreatmentTime.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentTime.cpp: Q_PROPERTY=1;Q_ENUM=1... -203/227 files checked 75% done -Checking sources/view/hd/data/treatment/VTreatmentUltrafiltration.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/hd/data/treatment/VTreatmentUltrafiltration.cpp: Q_PROPERTY=1;Q_ENUM=1... -204/227 files checked 75% done -Checking sources/view/settings/VAdjustmentAlarmVolume.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VAdjustmentAlarmVolume.cpp: Q_PROPERTY=1;Q_ENUM=1... -205/227 files checked 75% done -Checking sources/view/settings/VAdjustmentDGCleaningUsage.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VAdjustmentDGCleaningUsage.cpp: Q_PROPERTY=1;Q_ENUM=1... -206/227 files checked 76% done -Checking sources/view/settings/VAdjustmentInstitutionalRecord.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VAdjustmentInstitutionalRecord.cpp: Q_PROPERTY=1;Q_ENUM=1... -207/227 files checked 76% done -Checking sources/view/settings/VAdjustmentServiceDates.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VAdjustmentServiceDates.cpp: Q_PROPERTY=1;Q_ENUM=1... -208/227 files checked 76% done -Checking sources/view/settings/VAdjustmentServiceMode.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VAdjustmentServiceMode.cpp: Q_PROPERTY=1;Q_ENUM=1... -209/227 files checked 76% done -Checking sources/view/settings/VAdjustmentVersions.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VAdjustmentVersions.cpp: Q_PROPERTY=1;Q_ENUM=1... -210/227 files checked 76% done -Checking sources/view/settings/VBluetooth.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VBluetooth.cpp: Q_PROPERTY=1;Q_ENUM=1... -211/227 files checked 77% done -Checking sources/view/settings/VCloudSync.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VCloudSync.cpp: Q_PROPERTY=1;Q_ENUM=1... -212/227 files checked 77% done -Checking sources/view/settings/VDateTime.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VDateTime.cpp: Q_PROPERTY=1;Q_ENUM=1... -213/227 files checked 78% done -Checking sources/view/settings/VDuetRoWaterDG.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VDuetRoWaterDG.cpp: Q_PROPERTY=1;Q_ENUM=1... -214/227 files checked 78% done -Checking sources/view/settings/VHDUsageInfo.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VHDUsageInfo.cpp: Q_PROPERTY=1;Q_ENUM=1... -215/227 files checked 78% done -Checking sources/view/settings/VNetworkModel.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VNetworkModel.cpp: Q_PROPERTY=1;Q_ENUM=1... -216/227 files checked 79% done -Checking sources/view/settings/VSettings.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/view/settings/VSettings.cpp: Q_PROPERTY=1;Q_ENUM=1... -217/227 files checked 80% done -Checking sources/wifi/WifiInterface.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking sources/wifi/WifiInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -218/227 files checked 83% done -Checking unittests/tst_acknow.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking unittests/tst_acknow.cpp: Q_PROPERTY=1;Q_ENUM=1... -219/227 files checked 83% done -Checking unittests/tst_canbus.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking unittests/tst_canbus.cpp: Q_PROPERTY=1;Q_ENUM=1... -220/227 files checked 84% done -Checking unittests/tst_initializations.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking unittests/tst_initializations.cpp: Q_PROPERTY=1;Q_ENUM=1... -221/227 files checked 84% done -Checking unittests/tst_logging.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking unittests/tst_logging.cpp: Q_PROPERTY=1;Q_ENUM=1... -222/227 files checked 84% done -Checking unittests/tst_messaging.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking unittests/tst_messaging.cpp: Q_PROPERTY=1;Q_ENUM=1... -223/227 files checked 86% done -Checking unittests/tst_models.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking unittests/tst_models.cpp: Q_PROPERTY=1;Q_ENUM=1... -224/227 files checked 97% done -Checking unittests/tst_threads.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking unittests/tst_threads.cpp: Q_PROPERTY=1;Q_ENUM=1... -225/227 files checked 97% done -Checking unittests/tst_utilities.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking unittests/tst_utilities.cpp: Q_PROPERTY=1;Q_ENUM=1... -226/227 files checked 97% done -Checking unittests/tst_views.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ -Platform:Native -Checking unittests/tst_views.cpp: Q_PROPERTY=1;Q_ENUM=1... -227/227 files checked 100% done +24/24 files checked 100% done Index: drydemo.pro =================================================================== diff -u -r260229a756a3ee29c681132bdc4d32204c215ceb -rad35b27c3ec3ea357b6173df5ab8793c3378af6e --- drydemo.pro (.../drydemo.pro) (revision 260229a756a3ee29c681132bdc4d32204c215ceb) +++ drydemo.pro (.../drydemo.pro) (revision ad35b27c3ec3ea357b6173df5ab8793c3378af6e) @@ -5,9 +5,6 @@ QMAKE_CXXFLAGS += -Wall -Werror -Wextra -Wimplicit-fallthrough=3 # -save-temps # see .ii # -Wpedantic -Wconversion -Wshadow # these can't always be used, since it gives errors in Qt library. -# Leahi Digi Board -DEFINES += LEAHI_DIGI_BOARD - TRANSLATIONS += \ resources/translations/translation_es.ts \ resources/translations/translation_de.ts Index: drydemo.pro.user =================================================================== diff -u -r424c81d03f7d915d39ab962f652c0b565f465bf7 -rad35b27c3ec3ea357b6173df5ab8793c3378af6e --- drydemo.pro.user (.../drydemo.pro.user) (revision 424c81d03f7d915d39ab962f652c0b565f465bf7) +++ drydemo.pro.user (.../drydemo.pro.user) (revision ad35b27c3ec3ea357b6173df5ab8793c3378af6e) @@ -1,14 +1,14 @@ - + EnvironmentId {d3e165e0-350b-4c5e-a5f5-6e3e06ca0990} ProjectExplorer.Project.ActiveTarget - 0 + 1 ProjectExplorer.Project.EditorSettings @@ -92,21 +92,20 @@ ProjectExplorer.Project.Target.0 - Desktop - Desktop Qt 5.15.10 GCC 64bit - Desktop Qt 5.15.10 GCC 64bit - qt.qt5.51510.gcc_64_kit - 0 + GenericLinuxOsType + Qt 5.15.10 (iMX8) + Qt 5.15.10 (iMX8) + {ada4083c-13b6-4ac8-a486-71ff00b060da} + 1 0 0 0 - /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Debug - /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Debug + /home/denali/Projects/tmp/build/leahi-Qt_5_15_10_iMX8-Debug + /home/denali/Projects/tmp/build/leahi-Qt_5_15_10_iMX8-Debug true - 0 0 /home/denali/Projects/application/imake.sh %{sourceDir} ProjectExplorer.ProcessStep @@ -123,8 +122,7 @@ true - -b --tag denali >> denali - + -b --tag denali >> denali sha256sum %{buildDir} ProjectExplorer.ProcessStep @@ -156,11 +154,12 @@ 0 - /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Release - /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Release + /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_iMX8-Release + /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_iMX8-Release true + 0 0 /home/denali/Projects/application/imake.sh %{sourceDir} ProjectExplorer.ProcessStep @@ -177,8 +176,7 @@ true - -b --tag denali >> denali - + -b --tag denali >> denali sha256sum %{buildDir} ProjectExplorer.ProcessStep @@ -203,6 +201,7 @@ false false + -A can1 Release Qt4ProjectManager.Qt4BuildConfiguration @@ -211,8 +210,8 @@ 0 - /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Profile - /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Profile + /home/denali/Projects/tmp/build/leahi-Qt_5_15_10_iMX8-Profile + /home/denali/Projects/tmp/build/leahi-Qt_5_15_10_iMX8-Profile true @@ -254,54 +253,201 @@ 3 - 0 + + true + RemoteLinux.KillAppStep + + + + + + + + + true + RemoteLinux.DirectUploadStep + + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + + + 192.168.137.210 + 192.168.10.159 + 192.168.10.228 + 192.168.10.228 + 192.168.10.138 + 192.168.137.25 + 192.168.137.30 + 192.168.10.186 + 192.168.10.167 + 192.168.137.170 + 192.168.137.3 + 192.168.40.23 + 192.168.137.24 + 192.168.137.170 + 192.168.137.26 + 192.168.10.186 + 192.168.137.36 + 192.168.137.125 + 192.168.137.202 + 192.168.137.247 + + + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + /home/root + + + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux + /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots + + + 2023-02-02T01:52:20.307 + 2023-01-24T18:19:13.179 + 2023-01-17T18:06:25.579 + 2023-01-17T18:18:03.749 + 2023-02-02T09:06:00.862 + 2023-02-02T02:13:54.596 + 2023-02-02T02:30:48.337 + 2023-01-18T17:47:08.797 + 2023-02-02T19:40:15.813 + 2023-01-27T10:15:15.423 + 2023-02-02T02:40:56.627 + 2023-01-24T17:29:54.849 + 2023-02-02T02:05:29.947 + 2023-01-27T09:45:11.898 + 2023-02-01T05:00:56.449 + 2023-01-18T20:13:36.296 + 2023-02-01T03:23:15.710 + 2023-02-02T02:07:25.922 + 2023-02-02T01:46:50.167 + 2023-02-02T02:26:33.738 + + + 2023-02-02T01:52:16.000 + 2023-01-24T18:18:58.000 + 2023-01-17T18:05:42.000 + 2023-01-17T18:17:25.000 + 2023-02-02T09:05:22.000 + 2023-02-02T02:14:08.000 + 2023-02-02T02:31:01.000 + 2023-01-18T17:47:04.000 + 2023-02-02T19:39:36.000 + 2023-01-27T10:15:08.000 + 2023-02-02T02:41:10.000 + 2023-01-24T17:30:03.000 + 2023-02-02T02:05:42.000 + 2023-01-27T09:44:58.000 + 2023-02-01T05:00:51.000 + 2023-01-18T20:13:33.000 + 2023-02-01T03:23:28.000 + 2023-02-02T02:07:21.000 + 2023-02-02T01:47:02.000 + 2023-02-02T02:26:46.000 + + + 2 Deploy Deploy ProjectExplorer.BuildSteps.Deploy 1 false - ProjectExplorer.DefaultDeployConfiguration + DeployToGenericLinux 1 true true true - 2 + 1 - Qt4ProjectManager.Qt4RunConfiguration:/home/denali/Projects/drydemo/drydemo.pro + drydemo (on %{Device:Name}) + RemoteLinuxRunConfiguration:/home/denali/Projects/drydemo/drydemo.pro /home/denali/Projects/drydemo/drydemo.pro - -L + 1 false true - true false true - /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Debug + :0 1 ProjectExplorer.Project.Target.1 - GenericLinuxOsType - Qt 5.15.10 (iMX8) - Qt 5.15.10 (iMX8) - {ada4083c-13b6-4ac8-a486-71ff00b060da} - 1 + Desktop + Desktop Qt 5.15.10 GCC 64bit + Desktop Qt 5.15.10 GCC 64bit + qt.qt5.51510.gcc_64_kit + 0 0 0 0 - /home/denali/Projects/tmp/build/leahi-Qt_5_15_10_iMX8-Debug - /home/denali/Projects/tmp/build/leahi-Qt_5_15_10_iMX8-Debug + /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Debug + /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Debug true + 0 0 /home/denali/Projects/application/imake.sh %{sourceDir} ProjectExplorer.ProcessStep @@ -318,7 +464,8 @@ true - -b --tag denali >> denali + -b --tag denali >> denali + sha256sum %{buildDir} ProjectExplorer.ProcessStep @@ -350,12 +497,12 @@ 0 - /home/denali/Projects/tmp/build/leahi-Qt_5_15_10_iMX8-Release - /home/denali/Projects/tmp/build/leahi-Qt_5_15_10_iMX8-Release + /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Release + /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Release true - 0 0 + "" 0 /home/denali/Projects/application/imake.sh %{sourceDir} ProjectExplorer.ProcessStep @@ -372,7 +519,8 @@ true - -b --tag denali >> denali + -b --tag denali >> denali + sha256sum %{buildDir} ProjectExplorer.ProcessStep @@ -397,7 +545,6 @@ false false - -L Release Qt4ProjectManager.Qt4BuildConfiguration @@ -406,8 +553,8 @@ 0 - /home/denali/Projects/tmp/build/leahi-Qt_5_15_10_iMX8-Profile - /home/denali/Projects/tmp/build/leahi-Qt_5_15_10_iMX8-Profile + /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Profile + /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Profile true @@ -449,179 +596,33 @@ 3 - - true - RemoteLinux.KillAppStep - - - - - - - - - true - RemoteLinux.DirectUploadStep - - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - - - 192.168.137.170 - 192.168.137.26 - 192.168.137.24 - 192.168.40.23 - 192.168.137.3 - 192.168.10.186 - 192.168.137.247 - 192.168.137.202 - 192.168.137.125 - 192.168.137.36 - 192.168.10.159 - 192.168.137.210 - 192.168.10.138 - 192.168.10.228 - 192.168.10.228 - 192.168.137.30 - 192.168.137.25 - 192.168.137.170 - 192.168.10.186 - 192.168.10.167 - - - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - /home/root - - - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux - /opt/b2qt/3.1.18/sysroots - - - 2023-01-27T09:45:11.898 - 2023-02-01T05:00:56.449 - 2023-02-02T02:05:29.947 - 2023-01-24T17:29:54.849 - 2023-02-02T02:40:56.627 - 2023-01-18T20:13:36.296 - 2023-02-02T02:26:33.738 - 2023-02-02T01:46:50.167 - 2023-02-02T02:07:25.922 - 2023-02-01T03:23:15.710 - 2023-01-24T18:19:13.179 - 2023-02-02T01:52:20.307 - 2023-02-02T09:06:00.862 - 2023-01-17T18:18:03.749 - 2023-01-17T18:06:25.579 - 2023-02-02T02:30:48.337 - 2023-02-02T02:13:54.596 - 2023-01-27T10:15:15.423 - 2023-01-18T17:47:08.797 - 2023-02-02T19:40:15.813 - - - 2023-01-27T09:44:58.000 - 2023-02-01T05:00:51.000 - 2023-02-02T02:05:42.000 - 2023-01-24T17:30:03.000 - 2023-02-02T02:41:10.000 - 2023-01-18T20:13:33.000 - 2023-02-02T02:26:46.000 - 2023-02-02T01:47:02.000 - 2023-02-02T02:07:21.000 - 2023-02-01T03:23:28.000 - 2023-01-24T18:18:58.000 - 2023-02-02T01:52:16.000 - 2023-02-02T09:05:22.000 - 2023-01-17T18:17:25.000 - 2023-01-17T18:05:42.000 - 2023-02-02T02:31:01.000 - 2023-02-02T02:14:08.000 - 2023-01-27T10:15:08.000 - 2023-01-18T17:47:04.000 - 2023-02-02T19:39:36.000 - - - 2 + 0 Deploy Deploy ProjectExplorer.BuildSteps.Deploy 1 false - DeployToGenericLinux + ProjectExplorer.DefaultDeployConfiguration 1 true true true - 1 + 2 - leahi (on %{Device:Name}) - RemoteLinuxRunConfiguration:/home/denali/Projects/application/leahi.pro - /home/denali/Projects/application/leahi.pro - 1 + Qt4ProjectManager.Qt4RunConfiguration:/home/denali/Projects/drydemo/drydemo.pro + /home/denali/Projects/drydemo/drydemo.pro + -L -A can1 false true + true false true - :0 + /home/denali/Projects/tmp/build/drydemo-Qt_5_15_10_GCC-Debug 1 Index: main.cpp =================================================================== diff -u -r7936e751fe1cd3517d0d548b53fef41f41b4db4a -rad35b27c3ec3ea357b6173df5ab8793c3378af6e --- main.cpp (.../main.cpp) (revision 7936e751fe1cd3517d0d548b53fef41f41b4db4a) +++ main.cpp (.../main.cpp) (revision ad35b27c3ec3ea357b6173df5ab8793c3378af6e) @@ -531,23 +531,6 @@ signal(SIGTERM, signalhandler); #endif - /* - drydemostates dryStates; - - dryStates.start(); - - dryStates.connectToState("Idle", QScxmlStateMachine::onEntry([&]() { - qDebug() << "In onEntry"; - QThread::sleep(4); - dryStates.submitEvent("Tx_Start_Rqst");})); - - dryStates.connectToState("Idle", QScxmlStateMachine::onExit([&] { - qDebug() << "Exiting";})); - - dryStates.connectToState("Treatment", QScxmlStateMachine::onEntry([&]() { - qDebug() << "In Treatment";})); - */ - // setting the environment for the keyboard. qputenv("QT_IM_MODULE" , QByteArray("qtvirtualkeyboard" )); qputenv("QT_VIRTUALKEYBOARD_STYLE" , QByteArray("denali" )); Index: sources/MessageGlobals.h =================================================================== diff -u -r75ca4bd322b1b11b7feb113086645979c95533a3 -rad35b27c3ec3ea357b6173df5ab8793c3378af6e --- sources/MessageGlobals.h (.../MessageGlobals.h) (revision 75ca4bd322b1b11b7feb113086645979c95533a3) +++ sources/MessageGlobals.h (.../MessageGlobals.h) (revision ad35b27c3ec3ea357b6173df5ab8793c3378af6e) @@ -127,10 +127,12 @@ ID_DIALYSATE_OUT_FLOW_DATA_BC = 0x0B00, ID_TX_TIME_BC = 0x0D00, ID_HD_TX_STATES_BC = 0x0F00, + ID_UI_SALINE_BOLUS_RQST = 0x1200, ID_USER_TX_TIME_CHANGES_RQST = 0x1600, ID_HD_TX_PARAMS_RANGES_DATA = 0x1A00, ID_USER_TX_TIME_CHANGES_RESP = 0x1B00, ID_HD_OP_MODE = 0x2500, + ID_HD_SALINE_BOLUS_BC = 0x2F00, ID_UI_TX_PARAMS_RQST = 0x3500, ID_HD_NEW_PARAMS_RESP = 0x3600, ID_UI_RQST_TX = 0x3800, Index: sources/StateController.cpp =================================================================== diff -u -r7936e751fe1cd3517d0d548b53fef41f41b4db4a -rad35b27c3ec3ea357b6173df5ab8793c3378af6e --- sources/StateController.cpp (.../StateController.cpp) (revision 7936e751fe1cd3517d0d548b53fef41f41b4db4a) +++ sources/StateController.cpp (.../StateController.cpp) (revision ad35b27c3ec3ea357b6173df5ab8793c3378af6e) @@ -52,6 +52,7 @@ case ID_UI_SET_UF_VOLUME_RQST: case ID_USER_TX_TIME_CHANGES_RQST: case ID_UI_CONFIRM_TX_PARAMS: + case ID_UI_SALINE_BOLUS_RQST: _treatmentRcvdMessages[receivedMsgID] = msg[1]; break; @@ -86,6 +87,7 @@ case ID_HD_BLOOD_PRIME_BC: case ID_HD_RINSEBACK_CMD_RESP: case ID_HD_RINSEBACK_DATA_BC: + case ID_HD_SALINE_BOLUS_BC: // Do nothing break; } @@ -446,6 +448,20 @@ _isSendListReady = true; } +void StateController::prepareSalineBolusBroadcastData(float cumSalineVolML, float bolSalineVolML) +{ + QVariantList resp; + resp.append(static_cast(ID_HD_SALINE_BOLUS_BC)); + resp.append(Can_Id::eChlid_HD_Sync); + resp.append(_treatmentParams.salineBolusVolML); + resp.append(cumSalineVolML); + resp.append(bolSalineVolML); + resp.append(0.0); resp.append(0.0); resp.append(0); + _isSendListReady = false; + _sendMessages.append(resp); + _isSendListReady = true; +} + void StateController::handleTreatmentTimeChangeRequest(const QVariant &payload) { quint32 accept = REJECT_VALUE; @@ -693,6 +709,8 @@ static State_Status status = STATE_ON_ENTRY; auto inEntry = [=](){ + _treatmentVars.broadcastIntervalCount = 0; + prepareHDModeTransitionBroadcastData(MODE_STAN, 0); // Send the pre treatment states to reset so it starts from the right state @@ -727,6 +745,22 @@ }; auto inAction = [=](){ + _treatmentVars.broadcastIntervalCount++; + + // Keep sending the default status once a second + if (_treatmentVars.broadcastIntervalCount % NUM_OF_COUNTS_TIMER_BC_EMIT == 0) { + prepareHDModeTransitionBroadcastData(MODE_STAN, 0); + // Send the pre treatment states to reset so it starts from the right state + QList preTxStates({0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}); + prepareStatesBroadcastData(ID_PRE_TX_STATES_BC, preTxStates); + + // Send the treatment params in Idle too. This is to make sure if the user + // jumped to the Ultrafiltration page the min and max UF volumes are set prior to it. + QVariant emptyVar; + setTreatmentParams(false, emptyVar); + prepareTreatmentParamsRangesBroadcastData(); + } + bool isMsgBBRequested = false; if (!_treatmentRcvdMessages[ID_UI_CONFIRM_RESP].isNull()) { @@ -1353,7 +1387,10 @@ void StateController::onTreatmentTreatmentStateChange(bool active) { - static State_Status status = STATE_ON_ENTRY; + static State_Status status = STATE_ON_ENTRY; + static bool isSalineBolRqstd = false; + static float cumSalineVolML = 0.0; + static float bolSalineVolML = 0.0; auto inEntry = [=](){ _treatmentVars.prescribedTreatmentTimeS = _treatmentParams.txDurationMins * SECONDS_PER_MINUTE; @@ -1375,29 +1412,59 @@ _treatmentVars.prescribedTreatmentTimeS, _treatmentVars.prescribedMaxUFVolML); - status = STATE_ON_ACTION; + status = STATE_ON_ACTION; + isSalineBolRqstd = false; + cumSalineVolML = 0.0; + bolSalineVolML = 0.0; }; auto inAction = [=](){ _treatmentVars.broadcastIntervalCount++; + quint32 ufSubState = UF_RUNNING_STATE; + quint32 salineSubState = SALINE_BOLUS_IDLE_STATE; + quint32 bloodFlowMLPM = _treatmentParams.bloodFlowRateMLPM; + + if (!_treatmentRcvdMessages[ID_UI_SALINE_BOLUS_RQST].isNull()) { + qint32 resultIndex = 0; + Types::U32 param; + GetValue(_treatmentRcvdMessages[ID_UI_SALINE_BOLUS_RQST].toByteArray(), resultIndex, param); + + isSalineBolRqstd = false; + bolSalineVolML = 0.0; + if ((param.value == SALINE_BOLUS_START_CMD) && (cumSalineVolML < SALINE_BOLUS_MAX_VOL_ML)) { + isSalineBolRqstd = true; + } + _treatmentRcvdMessages[ID_UI_SALINE_BOLUS_RQST].clear(); + } + float timeSinceLastCallMS = static_cast(QOBJECT_TIMER_TIMEOUT_MS) / static_cast(MILLISECONDS_PER_SECOND); - _treatmentVars.refUFVolumeML += (timeSinceLastCallMS / SECONDS_PER_MINUTE) * _treatmentVars.prescribedUFRate; - _treatmentVars.measUFVolumeML = _treatmentVars.refUFVolumeML; - //qDebug() << "UF Value" << _treatmentVars.measUFVolumeML << _treatmentVars.refUFVolumeML << _treatmentVars.prescribedUFRate; - if (_treatmentVars.broadcastIntervalCount % NUM_OF_COUNTS_TIMER_BC_EMIT == 0) { - QList txStates({DIALYSIS_SUB_STATE, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0}); - prepareStatesBroadcastData(ID_HD_TX_STATES_BC, txStates); - prepareOcclusionBroadcastData(); - prepareTreatmentTimeBroadcastData(); - prepareBloodFlowBroadcastData(_treatmentParams.bloodFlowRateMLPM); - prepareDialysateFlowBroadcastData(); - prepareDialysateOutFlowBroadcastData(); - prepareTreatmentParamsRangesBroadcastData(); + if (!isSalineBolRqstd) { + _treatmentVars.refUFVolumeML += (timeSinceLastCallMS / SECONDS_PER_MINUTE) * _treatmentVars.prescribedUFRate; + _treatmentVars.measUFVolumeML = _treatmentVars.refUFVolumeML; } - //qDebug() << "Target treatment" << _treatmentVars.prescribedTreatmentTimeS; + else { + salineSubState = SALINE_BOLUS_IN_PROG_STATE; + bloodFlowMLPM = SALINE_BOLUS_TARGET_FLOW_MLPM; + bolSalineVolML += bloodFlowMLPM * (timeSinceLastCallMS / SECONDS_PER_MINUTE); + cumSalineVolML += bloodFlowMLPM * (timeSinceLastCallMS / SECONDS_PER_MINUTE); + if (bolSalineVolML >= _treatmentParams.salineBolusVolML) { + salineSubState = SALINE_BOLUS_IDLE_STATE; + bolSalineVolML = 0.0; + isSalineBolRqstd = false; + } + else if (cumSalineVolML >= SALINE_BOLUS_MAX_VOL_ML) { + salineSubState = SALINE_BOLUS_MAX_DELIVERED; + bolSalineVolML = 0.0; + isSalineBolRqstd= false; + } + + qDebug() << "Saline" << bloodFlowMLPM << bolSalineVolML << cumSalineVolML; + } + + if (!_treatmentRcvdMessages[ID_USER_TX_TIME_CHANGES_RQST].isNull()) { handleTreatmentTimeChangeRequest(_treatmentRcvdMessages[ID_USER_TX_TIME_CHANGES_RQST]); _treatmentRcvdMessages[ID_USER_TX_TIME_CHANGES_RQST].clear(); @@ -1407,6 +1474,18 @@ status = STATE_ON_EXIT; } + if (_treatmentVars.broadcastIntervalCount % NUM_OF_COUNTS_TIMER_BC_EMIT == 0) { + QList txStates({DIALYSIS_SUB_STATE, ufSubState, salineSubState, 0, 0, 0, 0, 0, 0, 0, 0}); + prepareStatesBroadcastData(ID_HD_TX_STATES_BC, txStates); + prepareOcclusionBroadcastData(); + prepareTreatmentTimeBroadcastData(); + prepareBloodFlowBroadcastData(bloodFlowMLPM); + prepareDialysateFlowBroadcastData(); + prepareDialysateOutFlowBroadcastData(); + prepareTreatmentParamsRangesBroadcastData(); + prepareSalineBolusBroadcastData(cumSalineVolML, bolSalineVolML); + } + if (!_treatmentRcvdMessages[ID_UI_CONFIRM_RESP].isNull()) { status = STATE_ON_ENTRY; _dryDemo.submitEvent("Transition_back_2_idle"); Index: sources/StateController.h =================================================================== diff -u -r7936e751fe1cd3517d0d548b53fef41f41b4db4a -rad35b27c3ec3ea357b6173df5ab8793c3378af6e --- sources/StateController.h (.../StateController.h) (revision 7936e751fe1cd3517d0d548b53fef41f41b4db4a) +++ sources/StateController.h (.../StateController.h) (revision ad35b27c3ec3ea357b6173df5ab8793c3378af6e) @@ -83,6 +83,10 @@ #define RINSEBACK_SUBSTATE 4 #define TX_END_SUB_STATE 6 + // Ultrafiltration substates + #define UF_PAUSESD_STATE 0 + #define UF_RUNNING_STATE 1 + // Rinseback defines #define RINSEBACK_MIN_FLOW_RATE_MLPM 100 #define RINSEBACK_MAX_RLOW_RATE_MLPM 300 @@ -94,6 +98,15 @@ #define RINSEBACK_PAUSE_STATE 2 #define RINSEBACK_STOP_STATE 3 + // Saline Bolus defines + #define SALINE_BOLUS_IDLE_STATE 0 + #define SALINE_BOLUS_IN_PROG_STATE 2 + #define SALINE_BOLUS_MAX_DELIVERED 3 + + #define SALINE_BOLUS_START_CMD 1 + #define SALINE_BOLUS_MAX_VOL_ML 800 + #define SALINE_BOLUS_TARGET_FLOW_MLPM 250 + enum User_Command_ID { CMD_NONE = -1, CMD_STAND_BY = 0, @@ -190,6 +203,7 @@ void prepareBloodPrimeBroadcastData(float accumulatedVolML); void prepareRinsebackBroadcastData(const QList &volsML, const QList &payload); void prepareTreatmentTimeChangeResponse(quint32 accept, quint32 txDurS, float maxUFvolML); + void prepareSalineBolusBroadcastData(float cumSalineVolML, float bolSalineVolML); void handleTreatmentTimeChangeRequest(const QVariant &payload); qint32 handleMsgBBPayload(const QVariant &payload);