Index: cppcheck.err =================================================================== diff -u -r6c6f1f5d466badd9b4fd67be7c907234c342b2a2 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- cppcheck.err (.../cppcheck.err) (revision 6c6f1f5d466badd9b4fd67be7c907234c342b2a2) +++ cppcheck.err (.../cppcheck.err) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -1,51 +1,51 @@ -07/18/2023 3:05 -Behrouz NematiPour +02/28/2024 17:22 +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:107:14: style: Condition '!createFolder' is always false [knownConditionTrueFalse] +sources/storage/FileHandler.h:108:14: style: Condition '!createFolder' is always false [knownConditionTrueFalse] if ( ! createFolder ) { if ( ! dstDir.exists() ) { err = eDstFolderNotExist ; goto lErr; }} ^ -sources/storage/FileHandler.h:99:35: note: Assignment 'createFolder=true', assigned value is 1 +sources/storage/FileHandler.h:100:35: note: Assignment 'createFolder=true', assigned value is 1 bool createFolder = true; ^ -sources/storage/FileHandler.h:107:14: note: Condition '!createFolder' is always false +sources/storage/FileHandler.h:108:14: note: Condition '!createFolder' is always false if ( ! createFolder ) { if ( ! dstDir.exists() ) { err = eDstFolderNotExist ; goto lErr; }} ^ -sources/storage/FileHandler.h:96:17: style: Local variable 'totalSize' shadows outer function [shadowFunction] +sources/storage/FileHandler.h:97:17: style: Local variable 'totalSize' shadows outer function [shadowFunction] qint64 totalSize = 0; ^ -sources/storage/FileHandler.h:77:21: note: Shadowed declaration +sources/storage/FileHandler.h:78:21: note: Shadowed declaration static quint64 totalSize(const QFileInfoList &vFileInfoList); ^ -sources/storage/FileHandler.h:96:17: note: Shadow variable +sources/storage/FileHandler.h:97: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:91:33: style: Variable 'err' is assigned a value that is never used. [unreadVariable] +sources/storage/FileHandler.h:92:33: style: Variable 'err' is assigned a value that is never used. [unreadVariable] FileCopyError_Enums err = eOK; ^ -sources/ApplicationPost.cpp:115:9: style: Condition '!ok' is always false [knownConditionTrueFalse] +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:113:15: note: Assignment 'ok=true', assigned value is 1 +sources/ApplicationPost.cpp:162:15: note: Assignment 'ok=true', assigned value is 1 bool ok = true; ^ -sources/ApplicationPost.cpp:115:9: note: Condition '!ok' is always false +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:253:9: style: Condition '!ok' is always false [knownConditionTrueFalse] +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:251:15: note: Assignment 'ok=true', assigned value is 1 +sources/ApplicationPost.cpp:300:15: note: Assignment 'ok=true', assigned value is 1 bool ok = true; ^ -sources/ApplicationPost.cpp:253:9: note: Condition '!ok' is always false +sources/ApplicationPost.cpp:302:9: note: Condition '!ok' is always false if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_HD_UI_POST_FAILURE_SOUND); ^ 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: @@ -93,34 +93,40 @@ 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:431:13: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] +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:239:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +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:263:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +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:534:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +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:589:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +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:598:51: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +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:598:76: style: Variable 'args' is assigned a value that is never used. [unreadVariable] +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:620:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +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:684:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:747:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -sources/device/DeviceView.h:68:32: style: The condition 'vData.mAccepted || !vData.mAccepted && vData.mReason!=0' is equivalent to 'vData.mAccepted || vData.mReason!=0'. [redundantCondition] +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] @@ -168,10 +174,10 @@ 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:113:5: warning: Member variable 'MDGReservoir::_data' is not initialized in the constructor. [uninitMemberVar] +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:136:5: warning: Member variable 'MDGTemperatures::_data' is not initialized in the constructor. [uninitMemberVar] +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] @@ -198,6 +204,9 @@ 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 () { } ^ @@ -234,6 +243,9 @@ 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 () { } ^ @@ -324,7 +336,7 @@ 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:77:5: warning: Member variable 'MHDAirTrapData::_data' is not initialized in the constructor. [uninitMemberVar] +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] @@ -336,6 +348,9 @@ 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 () { } ^ @@ -345,6 +360,9 @@ 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() { } ^ @@ -372,7 +390,7 @@ 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:99:5: warning: Member variable 'MOutletFlow::_data' is not initialized in the constructor. [uninitMemberVar] +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] @@ -417,16 +435,25 @@ 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:243:10: style: Condition 'ok' is always true [knownConditionTrueFalse] +sources/storage/Logger.cpp:236:9: style: Condition 'vUseTempPath' is always false [knownConditionTrueFalse] + if (vUseTempPath) { + ^ +sources/storage/Logger.cpp:233:20: note: Assignment 'vUseTempPath=false', assigned value is 0 + vUseTempPath = false; + ^ +sources/storage/Logger.cpp:236:9: note: Condition 'vUseTempPath' is always false + if (vUseTempPath) { + ^ +sources/storage/Logger.cpp:256:10: style: Condition 'ok' is always true [knownConditionTrueFalse] if ( ok && ! setLogPath(LogType::eLogAppED) ) ok = false; ^ -sources/storage/Logger.cpp:242:15: note: Assignment 'ok=true', assigned value is 1 +sources/storage/Logger.cpp:255:15: note: Assignment 'ok=true', assigned value is 1 bool ok = true; ^ -sources/storage/Logger.cpp:243:10: note: Condition 'ok' is always true +sources/storage/Logger.cpp:256:10: note: Condition 'ok' is always true if ( ok && ! setLogPath(LogType::eLogAppED) ) ok = false; ^ -sources/storage/Logger.cpp:189: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: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: void f(int x) { int i = 0; @@ -444,28 +471,43 @@ 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/TreatmentLog.cpp:487:10: style: Condition '!ok' is always false [knownConditionTrueFalse] - if ( ! ok ) { - ^ -sources/storage/TreatmentLog.cpp:481:10: note: Assuming that condition '!ok' is not redundant - if ( ! ok ) { - ^ -sources/storage/TreatmentLog.cpp:487:10: note: Condition '!ok' is always false - if ( ! ok ) { - ^ -sources/storage/TreatmentLog.cpp:92:41: style: Variable 'mTreatmentDurationFmt' is assigned a value that is never used. [unreadVariable] +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:93:41: style: Variable 'mActualTreatmentDurationFmt' is assigned a value that is never used. [unreadVariable] +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/utility/format.cpp:98:19: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] mData += fromVariant(item); ^ -sources/view/settings/VNetworkModel.cpp:262:9: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] +sources/utility/qrcodegen.cpp:581:56: style: Suspicious expression. Boolean result is used in bitwise operation. The operator '!' and the comparison operators have higher precedence than bitwise operators. It is recommended that the expression is clarified with parentheses. [clarifyCondition] + modules.at(y).at(x) = modules.at(y).at(x) ^ (invert & !isFunction.at(y).at(x)); + ^ +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:280: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] @@ -519,7 +561,7 @@ unittests/tst_views.cpp:35:0: style: The function 'VTreatmentAdjustmentsResponse_text_WAReason' is never used. [unusedFunction] ^ -sources/view/settings/VSettings.cpp:316:0: style: The function 'checkServicePasswordSet' 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] @@ -528,22 +570,22 @@ unittests/tst_acknow.cpp:164:0: style: The function 'cleanupTestCase' is never used. [unusedFunction] ^ -sources/utility/encryption.cpp:28:0: style: The function 'cryptClose' is never used. [unusedFunction] +sources/utility/encryption.cpp:42:0: style: The function 'cryptClose' is never used. [unusedFunction] ^ -sources/utility/encryption.cpp:22:0: style: The function 'cryptFormat' is never used. [unusedFunction] +sources/utility/encryption.cpp:36:0: style: The function 'cryptFormat' is never used. [unusedFunction] ^ -sources/utility/encryption.cpp:16:0: style: The function 'cryptOpen' is never used. [unusedFunction] +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/view/VTreatmentCreate.cpp:82:0: style: The function 'doCancel' is never used. [unusedFunction] +sources/view/VTreatmentCreate.cpp:84:0: style: The function 'doCancel' is never used. [unusedFunction] ^ -sources/view/settings/VNetworkModel.cpp:243:0: style: The function 'doCheckIfConnected' is never used. [unusedFunction] +sources/view/settings/VNetworkModel.cpp:246:0: style: The function 'doCheckIfConnected' is never used. [unusedFunction] ^ sources/view/hd/alarm/VAlarmStatus.cpp:95:0: style: The function 'doClearCondition' is never used. [unusedFunction] @@ -582,40 +624,43 @@ sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:147:0: style: The function 'doDisinfectROPermeate' is never used. [unusedFunction] ^ -sources/gui/GuiView.cpp:256:0: style: The function 'doExportListInsert' is never used. [unusedFunction] +sources/gui/GuiView.cpp:258:0: style: The function 'doExportListInsert' is never used. [unusedFunction] ^ -sources/gui/GuiView.cpp:299:0: style: The function 'doExportListPercent' is never used. [unusedFunction] +sources/gui/GuiView.cpp:301:0: style: The function 'doExportListPercent' is never used. [unusedFunction] ^ -sources/gui/GuiView.cpp:287:0: style: The function 'doExportListSelect' 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:44:0: style: The function 'doInit' is never used. [unusedFunction] +sources/view/settings/VDateTime.cpp:59:0: style: The function 'doInit' is never used. [unusedFunction] ^ -sources/device/DeviceView.cpp:130:0: style: The function 'doInitBluetoothPairedQuery' is never used. [unusedFunction] +sources/device/DeviceView.cpp:136:0: style: The function 'doInitBluetoothPairedQuery' is never used. [unusedFunction] ^ -sources/device/DeviceView.cpp:105:0: style: The function 'doInitBluetoothPairedReset' is never used. [unusedFunction] +sources/device/DeviceView.cpp:111:0: style: The function 'doInitBluetoothPairedReset' is never used. [unusedFunction] ^ -sources/device/DeviceView.cpp:33:0: style: The function 'doInitBrightness' is never used. [unusedFunction] +sources/device/DeviceView.cpp:37:0: style: The function 'doInitBrightness' is never used. [unusedFunction] ^ -sources/device/DeviceView.cpp:67:0: style: The function 'doInitCryptSetup' is never used. [unusedFunction] +sources/device/DeviceView.cpp:71:0: style: The function 'doInitCryptSetup' is never used. [unusedFunction] ^ -sources/device/DeviceView.cpp:219:0: style: The function 'doInitDecommission' is never used. [unusedFunction] +sources/device/DeviceView.cpp:225:0: style: The function 'doInitDecommission' is never used. [unusedFunction] ^ -sources/device/DeviceView.cpp:190:0: style: The function 'doInitFactoryReset' is never used. [unusedFunction] +sources/device/DeviceView.cpp:196:0: style: The function 'doInitFactoryReset' is never used. [unusedFunction] ^ -sources/device/DeviceView.cpp:155:0: style: The function 'doInitRootSSHAccess' 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] @@ -624,6 +669,9 @@ 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] ^ @@ -654,16 +702,16 @@ sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp:51:0: style: The function 'doSample' is never used. [unusedFunction] ^ -sources/view/settings/VNetworkModel.cpp:367:0: style: The function 'doSetDNS' is never used. [unusedFunction] +sources/view/settings/VNetworkModel.cpp:370:0: style: The function 'doSetDNS' is never used. [unusedFunction] ^ -sources/view/settings/VNetworkModel.cpp:349:0: style: The function 'doSetGateway' is never used. [unusedFunction] +sources/view/settings/VNetworkModel.cpp:352:0: style: The function 'doSetGateway' is never used. [unusedFunction] ^ -sources/view/settings/VNetworkModel.cpp:340:0: style: The function 'doSetIPAddress' is never used. [unusedFunction] +sources/view/settings/VNetworkModel.cpp:343:0: style: The function 'doSetIPAddress' is never used. [unusedFunction] ^ -sources/view/settings/VNetworkModel.cpp:358:0: style: The function 'doSetSubnetMask' 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] @@ -693,16 +741,25 @@ 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] + +^ +sources/utility/qrcodegen.cpp:377:0: style: The function 'getMask' is never used. [unusedFunction] + +^ +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] ^ unittests/tst_canbus.cpp:35:0: style: The function 'initTestCase_data' is never used. [unusedFunction] ^ -sources/view/hd/alarm/VAlarmStatus.cpp:200:0: style: The function 'instructionKeys' is never used. [unusedFunction] +sources/view/hd/alarm/VAlarmStatus.cpp:205:0: style: The function 'instructionKeys' is never used. [unusedFunction] ^ -sources/view/hd/alarm/VAlarmStatus.cpp:201:0: style: The function 'instructionValues' is never used. [unusedFunction] +sources/view/hd/alarm/VAlarmStatus.cpp:206:0: style: The function 'instructionValues' is never used. [unusedFunction] ^ sources/view/settings/VSettings.cpp:256:0: style: The function 'isPasswordValid' is never used. [unusedFunction] @@ -711,6 +768,9 @@ 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] ^ @@ -732,43 +792,52 @@ unittests/tst_logging.cpp:82:0: style: The function 'logUnknown' is never used. [unusedFunction] ^ -sources/bluetooth/BluetoothInterface.cpp:1207:0: style: The function 'mimic' is never used. [unusedFunction] +sources/utility/qrcodegen.cpp:143:0: style: The function 'makeEci' is never used. [unusedFunction] ^ -sources/utility/encryption.cpp:34:0: style: The function 'mkfsExt4' is never used. [unusedFunction] +sources/bluetooth/BluetoothInterface.cpp:1209:0: style: The function 'mimic' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:168:0: style: The function 'moveFolder' 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] + +^ unittests/tst_logging.cpp:149:0: style: The function 'readUnknown' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:209:0: style: The function 'removeFiles' is never used. [unusedFunction] +sources/storage/FileHandler.cpp:211:0: style: The function 'removeFiles' is never used. [unusedFunction] ^ -sources/bluetooth/BluetoothInterface.cpp:1287:0: style: The function 'requestBattery' is never used. [unusedFunction] +sources/bluetooth/BluetoothInterface.cpp:1289:0: style: The function 'requestBattery' is never used. [unusedFunction] ^ -sources/bluetooth/BluetoothInterface.cpp:1274:0: style: The function 'requestInformation' is never used. [unusedFunction] +sources/bluetooth/BluetoothInterface.cpp:1276:0: style: The function 'requestInformation' is never used. [unusedFunction] ^ -sources/bluetooth/BluetoothInterface.cpp:1255:0: style: The function 'requestMeasurements' is never used. [unusedFunction] +sources/bluetooth/BluetoothInterface.cpp:1257:0: style: The function 'requestMeasurements' is never used. [unusedFunction] ^ sources/view/settings/VBluetooth.cpp:79:0: style: The function 'roleNames' is never used. [unusedFunction] ^ +sources/device/DeviceController.cpp:274:0: style: The function 'sdcardSpaceCheck' is never used. [unusedFunction] + +^ unittests/tst_logging.cpp:135:0: style: The function 'setLogPath_F' is never used. [unusedFunction] ^ unittests/tst_logging.cpp:142:0: style: The function 'setLogPath_T' is never used. [unusedFunction] ^ +sources/device/DeviceController.cpp:375:0: style: The function 'settingsPartitionSpaceCheck' is never used. [unusedFunction] + +^ sources/MainTimer.cpp:137:0: style: The function 'timerEvent' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:301:0: style: The function 'tmpUsable' is never used. [unusedFunction] +sources/storage/FileHandler.cpp:303:0: style: The function 'tmpUsable' is never used. [unusedFunction] ^ unittests/tst_acknow.cpp:62:0: style: The function 'tst_AcknowModel_Init' is never used. [unusedFunction] @@ -1302,22 +1371,31 @@ unittests/tst_utilities.cpp:180:0: style: The function 'tst_fromvariant_Undefined' is never used. [unusedFunction] ^ -unittests/tst_utilities.cpp:238:0: style: The function 'tst_getValue_len' 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:261:0: style: The function 'tst_safeIncrement_GtMaxValue_Step1' 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:254:0: style: The function 'tst_safeIncrement_GtMaxValue_Step10' 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:247:0: style: The function 'tst_safeIncrement_StepZero' 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] @@ -1329,9 +1407,12 @@ unittests/tst_utilities.cpp:204:0: style: The function 'tst_toStringList_RemoveDuplicate' is never used. [unusedFunction] ^ -sources/view/settings/VSettings.cpp:311:0: style: The function 'updateServicePassword' 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] ^ Index: cppcheck.log =================================================================== diff -u -r6c6f1f5d466badd9b4fd67be7c907234c342b2a2 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- cppcheck.log (.../cppcheck.log) (revision 6c6f1f5d466badd9b4fd67be7c907234c342b2a2) +++ cppcheck.log (.../cppcheck.log) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -1,1542 +1,1591 @@ -07/18/2023 3:05 -Behrouz NematiPour +02/28/2024 17:22 +Dara Navaei 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/ Platform:Native Checking main.cpp: Q_PROPERTY=1;Q_ENUM=1... -1/220 files checked 1% done +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/220 files checked 1% done +2/227 files checked 1% 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/ Platform:Native Checking sources/ApplicationController.cpp: Q_PROPERTY=1;Q_ENUM=1... -3/220 files checked 3% done +3/227 files checked 3% 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/ Platform:Native Checking sources/ApplicationPost.cpp: Q_PROPERTY=1;Q_ENUM=1... -4/220 files checked 4% done +4/227 files checked 4% 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/ Platform:Native Checking sources/MainTimer.cpp: Q_PROPERTY=1;Q_ENUM=1... -5/220 files checked 4% done +5/227 files checked 4% 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/ Platform:Native Checking sources/Threads.cpp: Q_PROPERTY=1;Q_ENUM=1... -6/220 files checked 4% done +6/227 files checked 5% done Checking sources/bluetooth/BluetoothInterface.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/bluetooth/BluetoothInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -7/220 files checked 9% done +7/227 files checked 9% 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/ Platform:Native Checking sources/canbus/CanInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -8/220 files checked 10% done +8/227 files checked 10% 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/ Platform:Native Checking sources/canbus/FrameInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -9/220 files checked 11% done +9/227 files checked 11% 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/ Platform:Native Checking sources/canbus/MessageAcknowModel.cpp: Q_PROPERTY=1;Q_ENUM=1... -10/220 files checked 11% done +10/227 files checked 11% 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/ Platform:Native Checking sources/canbus/MessageBuilder.cpp: Q_PROPERTY=1;Q_ENUM=1... -11/220 files checked 13% done +11/227 files checked 12% 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/ Platform:Native Checking sources/canbus/MessageDispatcher.cpp: Q_PROPERTY=1;Q_ENUM=1... -12/220 files checked 15% done +12/227 files checked 15% 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/ Platform:Native Checking sources/canbus/MessageInterpreter.cpp: Q_PROPERTY=1;Q_ENUM=1... -13/220 files checked 19% done +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/220 files checked 22% done +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/220 files checked 25% done +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/220 files checked 25% done +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/220 files checked 26% done +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/220 files checked 27% done +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/220 files checked 28% done +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/220 files checked 28% done +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/220 files checked 29% done +21/227 files checked 29% 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/ Platform:Native Checking sources/model/MAbstract.cpp: Q_PROPERTY=1;Q_ENUM=1... -22/220 files checked 29% done +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/220 files checked 30% done +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/220 files checked 30% done +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/220 files checked 30% done +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/220 files checked 30% done +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/220 files checked 30% done +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/220 files checked 30% done +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/220 files checked 31% done +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/220 files checked 31% done +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/220 files checked 31% done +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/220 files checked 31% done +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/220 files checked 31% done +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/220 files checked 32% done +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/220 files checked 32% done +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/220 files checked 32% done +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/220 files checked 32% done +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/220 files checked 32% done +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/220 files checked 32% done +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/220 files checked 32% done +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/220 files checked 33% done +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/220 files checked 33% done +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/220 files checked 33% done +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/220 files checked 34% done +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/220 files checked 34% done +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/220 files checked 34% done +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/220 files checked 34% done +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/220 files checked 34% done +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/220 files checked 34% done +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/220 files checked 34% done +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... -51/220 files checked 35% done +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... -52/220 files checked 35% done +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... -53/220 files checked 35% done +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... -54/220 files checked 35% done +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... -55/220 files checked 36% done +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... -56/220 files checked 36% done +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... -57/220 files checked 36% done +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... -58/220 files checked 36% done +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... -59/220 files checked 36% done +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... -60/220 files checked 36% done +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... -61/220 files checked 36% done +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... -62/220 files checked 37% done +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... -63/220 files checked 37% done +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... -64/220 files checked 37% done +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... -65/220 files checked 37% done +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... -66/220 files checked 37% done +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... -67/220 files checked 37% done +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... -68/220 files checked 37% done +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... -69/220 files checked 37% done +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... -70/220 files checked 38% done +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... -71/220 files checked 38% done +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... -72/220 files checked 38% done +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... -73/220 files checked 38% done +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... -74/220 files checked 38% done +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... -75/220 files checked 38% done +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... -76/220 files checked 38% done +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... -77/220 files checked 39% done +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... -78/220 files checked 39% done +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... -79/220 files checked 39% done +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... -80/220 files checked 39% done +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... -81/220 files checked 39% done +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... -82/220 files checked 46% done +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... -83/220 files checked 46% done +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... -84/220 files checked 46% done +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... -85/220 files checked 46% done +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... -86/220 files checked 46% done +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... -87/220 files checked 47% done +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... -88/220 files checked 47% done +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... -89/220 files checked 47% done +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... -90/220 files checked 47% done +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... -91/220 files checked 47% done +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... -92/220 files checked 47% done +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... -93/220 files checked 47% done +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... -94/220 files checked 47% done +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... -95/220 files checked 47% done +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... -96/220 files checked 48% done +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... -97/220 files checked 48% done +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... -98/220 files checked 48% done +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... -99/220 files checked 48% done +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... -100/220 files checked 48% done +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... -101/220 files checked 48% done +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... -102/220 files checked 48% done +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... -103/220 files checked 49% done +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... -104/220 files checked 49% done +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... -105/220 files checked 49% done +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... -106/220 files checked 49% done +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... -107/220 files checked 49% done +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... -108/220 files checked 49% done +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... -109/220 files checked 50% done +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... -110/220 files checked 50% done +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... -111/220 files checked 50% done +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... -112/220 files checked 50% done +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... -113/220 files checked 50% done +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... -114/220 files checked 50% done +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... -115/220 files checked 50% done +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... -116/220 files checked 50% done +120/227 files checked 50% 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/ Platform:Native Checking sources/model/settings/MBluetooth.cpp: Q_PROPERTY=1;Q_ENUM=1... -117/220 files checked 51% done +121/227 files checked 50% 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/ Platform:Native Checking sources/model/settings/MSettings.cpp: Q_PROPERTY=1;Q_ENUM=1... -118/220 files checked 51% done +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... -119/220 files checked 51% done +123/227 files checked 51% 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/ Platform:Native Checking sources/storage/FileHandler.cpp: Q_PROPERTY=1;Q_ENUM=1... -120/220 files checked 53% done +124/227 files checked 52% 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/ Platform:Native Checking sources/storage/Logger.cpp: Q_PROPERTY=1;Q_ENUM=1... -121/220 files checked 54% done +125/227 files checked 54% 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/ Platform:Native Checking sources/storage/Settings.cpp: Q_PROPERTY=1;Q_ENUM=1... -122/220 files checked 55% done +126/227 files checked 54% 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/ Platform:Native Checking sources/storage/StorageGlobals.cpp: Q_PROPERTY=1;Q_ENUM=1... -123/220 files checked 56% done +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... -124/220 files checked 57% done +128/227 files checked 57% 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/ Platform:Native Checking sources/utility/crc.cpp: Q_PROPERTY=1;Q_ENUM=1... -125/220 files checked 57% done +129/227 files checked 57% 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/ Platform:Native Checking sources/utility/encryption.cpp: Q_PROPERTY=1;Q_ENUM=1... -126/220 files checked 58% done +130/227 files checked 57% 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/ Platform:Native Checking sources/utility/format.cpp: Q_PROPERTY=1;Q_ENUM=1... -127/220 files checked 58% done +131/227 files checked 58% 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/ +Platform:Native +Checking sources/utility/qrcodegen.cpp: Q_PROPERTY=1;Q_ENUM=1... +132/227 files checked 60% 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/ Platform:Native Checking sources/utility/types.cpp: Q_PROPERTY=1;Q_ENUM=1... -128/220 files checked 58% done +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... -129/220 files checked 58% done +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... -130/220 files checked 59% done +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... -131/220 files checked 59% done +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... -132/220 files checked 61% done +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... -133/220 files checked 62% done +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... -134/220 files checked 63% done +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... -135/220 files checked 63% done +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... -136/220 files checked 63% done +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... -137/220 files checked 63% done +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... -138/220 files checked 63% done +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... -139/220 files checked 63% done +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... -140/220 files checked 63% done +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... -141/220 files checked 63% done +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... -142/220 files checked 63% done +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... -143/220 files checked 63% done +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... -144/220 files checked 63% done +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... -145/220 files checked 64% done +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... -146/220 files checked 64% done +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... -147/220 files checked 64% done +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... -148/220 files checked 64% done +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... -149/220 files checked 65% done +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... -150/220 files checked 65% done +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... -151/220 files checked 65% done +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... -152/220 files checked 65% done +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... -153/220 files checked 65% done +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... -154/220 files checked 66% done +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... -155/220 files checked 66% done +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... -156/220 files checked 66% done +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... -157/220 files checked 66% done +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... -158/220 files checked 66% done +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... -159/220 files checked 66% done +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... -160/220 files checked 66% done +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... -161/220 files checked 67% done +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... -162/220 files checked 67% done +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... -163/220 files checked 67% done +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... -164/220 files checked 67% done +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... -165/220 files checked 67% done +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... -166/220 files checked 67% done +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... -167/220 files checked 67% done +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... -168/220 files checked 68% done +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... -169/220 files checked 68% done +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... -170/220 files checked 68% done +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... -171/220 files checked 68% done +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... -172/220 files checked 68% done +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... -173/220 files checked 69% done +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... -174/220 files checked 69% done +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... -175/220 files checked 69% done +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... -176/220 files checked 69% done +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... -177/220 files checked 69% done +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... -178/220 files checked 70% done +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... -179/220 files checked 70% done +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... -180/220 files checked 70% done +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... -181/220 files checked 71% done +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... -182/220 files checked 71% done +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... -183/220 files checked 71% done +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... -184/220 files checked 71% done +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... -185/220 files checked 71% done +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... -186/220 files checked 71% done +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... -187/220 files checked 72% done +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... -188/220 files checked 73% done +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... -189/220 files checked 74% done +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... -190/220 files checked 74% done +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... -191/220 files checked 74% done +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... -192/220 files checked 74% done +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... -193/220 files checked 74% done +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... -194/220 files checked 74% done +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... -195/220 files checked 74% done +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... -196/220 files checked 74% done +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... -197/220 files checked 74% done +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... -198/220 files checked 74% done +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... -199/220 files checked 74% done +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... -200/220 files checked 74% done +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... -201/220 files checked 75% done +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... -202/220 files checked 75% done +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... -203/220 files checked 75% done +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... -204/220 files checked 75% done +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... -205/220 files checked 76% done +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... -206/220 files checked 76% done +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... -207/220 files checked 77% done +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... -208/220 files checked 77% done +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... -209/220 files checked 78% done +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... -210/220 files checked 79% done +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... -211/220 files checked 82% done +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... -212/220 files checked 82% done +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... -213/220 files checked 83% done +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... -214/220 files checked 83% done +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... -215/220 files checked 83% done +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... -216/220 files checked 85% done +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... -217/220 files checked 96% done +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... -218/220 files checked 97% done +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... -219/220 files checked 97% done +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... -220/220 files checked 100% done +227/227 files checked 100% done Index: denali.pro =================================================================== diff -u -rd26aff743bca7eceb609ce5b30cea7cbfa39748f -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- denali.pro (.../denali.pro) (revision d26aff743bca7eceb609ce5b30cea7cbfa39748f) +++ denali.pro (.../denali.pro) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -120,6 +120,7 @@ sources/device/DeviceController.h \ sources/storage/Settings.h \ sources/storage/TreatmentLog.h \ + sources/view/settings/VAdjustmentInstitutionalRecord.h \ sources/wifi/WifiInterface.h \ sources/bluetooth/BluetoothInterface.h \ sources/cloudsync/CloudSyncController.h \ @@ -146,6 +147,7 @@ sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.h \ sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.h \ sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.h \ + sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.h \ sources/model/dg/adjustment/settings/MDuetRoWaterDG.h \ \ # ---------- Models - Alarm sources/model/hd/alarm/MAlarmStatusData.h \ @@ -398,6 +400,7 @@ sources/storage/Settings.cpp \ sources/storage/TreatmentLog.cpp \ sources/view/hd/data/post/VHDPOSTData.cpp \ + sources/view/settings/VAdjustmentInstitutionalRecord.cpp \ sources/wifi/WifiInterface.cpp \ sources/bluetooth/BluetoothInterface.cpp \ sources/cloudsync/CloudSyncController.cpp \ @@ -421,6 +424,7 @@ sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.cpp \ sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.cpp \ sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.cpp \ + sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.cpp \ sources/model/dg/adjustment/settings/MDuetRoWaterDG.cpp \ \ # ---------- Models - Alarm sources/model/hd/alarm/MAlarmStatusData.cpp \ Index: denali.pro.user =================================================================== diff -u -r6c6f1f5d466badd9b4fd67be7c907234c342b2a2 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- denali.pro.user (.../denali.pro.user) (revision 6c6f1f5d466badd9b4fd67be7c907234c342b2a2) +++ denali.pro.user (.../denali.pro.user) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -1,6 +1,6 @@ - + EnvironmentId @@ -103,6 +103,7 @@ true + "" 0 /home/denali/Projects/application/imake.sh %{sourceDir} ProjectExplorer.ProcessStep @@ -459,47 +460,47 @@ 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-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-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-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 - 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.247 + 192.168.137.202 + 192.168.137.36 + 192.168.137.125 + 192.168.137.26 192.168.137.170 - 192.168.137.3 - 192.168.40.23 192.168.137.24 - 192.168.137.26 + 192.168.40.23 + 192.168.137.3 + 192.168.10.186 + 192.168.137.30 + 192.168.137.25 192.168.137.170 192.168.10.186 - 192.168.137.125 - 192.168.137.36 - 192.168.137.202 - 192.168.137.247 + 192.168.10.167 + 192.168.10.159 + 192.168.137.210 + 192.168.10.138 + 192.168.10.228 + 192.168.10.228 /home/root @@ -526,12 +527,9 @@ /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 @@ -540,54 +538,57 @@ /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/x86_64-pokysdk-linux + /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux - 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-02-02T02:26:33.738 + 2023-02-02T01:46:50.167 + 2023-02-01T03:23:15.710 + 2023-02-02T02:07:25.922 2023-02-01T05:00:56.449 2023-01-27T09:45:11.898 + 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:07:25.922 - 2023-02-01T03:23:15.710 - 2023-02-02T01:46:50.167 - 2023-02-02T02:26:33.738 + 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-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-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-02-02T02:26:46.000 + 2023-02-02T01:47:02.000 + 2023-02-01T03:23:28.000 + 2023-02-02T02:07:21.000 2023-02-01T05:00:51.000 2023-01-27T09:44:58.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:07:21.000 - 2023-02-01T03:23:28.000 - 2023-02-02T01:47:02.000 - 2023-02-02T02:26:46.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 + 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 2 Index: denali.qrc =================================================================== diff -u -rd26aff743bca7eceb609ce5b30cea7cbfa39748f -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- denali.qrc (.../denali.qrc) (revision d26aff743bca7eceb609ce5b30cea7cbfa39748f) +++ denali.qrc (.../denali.qrc) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -25,6 +25,7 @@ sources/gui/qml/pages/settings/SettingsManufacturingSetup.qml sources/gui/qml/pages/settings/SettingsFactoryReset.qml sources/gui/qml/pages/settings/SettingsDecommission.qml + sources/gui/qml/pages/settings/SettingsInstitutionalRecord.qml sources/gui/qml/dialogs/ConfirmDialog.qml Index: sources/canbus/MessageDispatcher.cpp =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/canbus/MessageDispatcher.cpp (.../MessageDispatcher.cpp) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/canbus/MessageDispatcher.cpp (.../MessageDispatcher.cpp) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -829,6 +829,18 @@ QVariantList mData; onActionTransmit(GuiActionType::ID_HDUsageInfoReq, mData); } + +/*! + * \brief MessageDispatcher::onAdjustment + * \details This method transmits the HD institutional record request to HD. + * \param vData - + * \return void + */ +void MessageDispatcher::onAdjustment(const AdjustInstitutionalRequestData &) +{ + QVariantList mData; + onActionTransmit(GuiActionType::ID_AdjustInstitutionalRecordReq, mData); +} // ---------------------------------------------------------------------------------------------------- /*! Index: sources/canbus/MessageDispatcher.h =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/canbus/MessageDispatcher.h (.../MessageDispatcher.h) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/canbus/MessageDispatcher.h (.../MessageDispatcher.h) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -160,6 +160,7 @@ GuiActionType::ID_AdjustHDDateTimeReq , GuiActionType::ID_AdjustDGDateTimeReq , GuiActionType::ID_HDUsageInfoReq , + GuiActionType::ID_AdjustInstitutionalRecordReq , // Treatment Log GuiActionType::ID_AdjustTreatmentLogReq , GuiActionType::ID_TreatmentLogAvrgeData , Index: sources/canbus/MessageGlobals.h =================================================================== diff -u -r10f946b2ecf6eed25d07d6a22216393dca34ffcc -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/canbus/MessageGlobals.h (.../MessageGlobals.h) (revision 10f946b2ecf6eed25d07d6a22216393dca34ffcc) +++ sources/canbus/MessageGlobals.h (.../MessageGlobals.h) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -271,6 +271,8 @@ {Gui::GuiActionType::ID_HDGeneralEvent , 5 * 4 }, // 5 parameters each 4bytes {Gui::GuiActionType::ID_DGGeneralEvent , 5 * 4 }, // 5 parameters each 4bytes + {Gui::GuiActionType::ID_AdjustInstitutionalRecordReq , 0 * 4 }, // 0 parameter + {Gui::GuiActionType::ID_AdjustInstitutionalRecordRsp , 26 * 4 }, //26 parameters each 4 bytes }; /*! Index: sources/canbus/MessageInterpreter.cpp =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -238,6 +238,7 @@ case Gui::GuiActionType::ID_AdjustDGDateTimeReq : INTERPRET_TRANSMIT_MESSAGE(AdjustDGDateTimeRequestData ); break; case Gui::GuiActionType::ID_AdjustServiceDatesReq : INTERPRET_TRSMT_MT_MESSAGE(AdjustServiceDatesRequestData ); break; case Gui::GuiActionType::ID_HDUsageInfoReq : INTERPRET_TRSMT_MT_MESSAGE(HDUsageInfoRequestData ); break; + case Gui::GuiActionType::ID_AdjustInstitutionalRecordReq : INTERPRET_TRANSMIT_MESSAGE(AdjustInstitutionalRequestData ); break; // Pre-Treatment case Gui::GuiActionType::ID_AdjustInitTreatmentReq : INTERPRET_TRANSMIT_MESSAGE(AdjustInitTreatmentRequestData ); break; case Gui::GuiActionType::ID_AdjustParametersValidationReq : INTERPRET_TRANSMIT_MESSAGE(AdjustParametersValidationRequestData ); break; @@ -443,7 +444,7 @@ case Gui::GuiActionType::ID_AdjustServiceDatesHDRsp : ok = notify(vMessage, vData, Gui::GuiActionType::ID_AdjustServiceDatesHDRsp ); break; case Gui::GuiActionType::ID_AdjustHDDateTimeRsp : ok = notify(vMessage, vData, Gui::GuiActionType::ID_AdjustHDDateTimeRsp ); break; case Gui::GuiActionType::ID_HDUsageInfoRsp : ok = notify(vMessage, vData, Gui::GuiActionType::ID_HDUsageInfoRsp ); break; - + case Gui::GuiActionType::ID_AdjustInstitutionalRecordRsp : ok = notify(vMessage, vData, Gui::GuiActionType::ID_AdjustInstitutionalRecordRsp ); break; // ----- States case Gui::GuiActionType::ID_HDOperationModeData : ok = notify(vMessage, vData, Gui::GuiActionType::ID_HDOperationModeData ); break; case Gui::GuiActionType::ID_PreTreatmentStates : ok = notify(vMessage, vData, Gui::GuiActionType::ID_PreTreatmentStates ); break; Index: sources/gui/GuiGlobals.cpp =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/gui/GuiGlobals.cpp (.../GuiGlobals.cpp) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/GuiGlobals.cpp (.../GuiGlobals.cpp) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -50,6 +50,7 @@ #include "VDuetRoWaterDG.h" #include "VCloudSync.h" #include "VHDUsageInfo.h" +#include "VAdjustmentInstitutionalRecord.h" // states data #include "VHDOperationModeData.h" #include "VPreTreatmentStatesData.h" Index: sources/gui/GuiGlobals.h =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/gui/GuiGlobals.h (.../GuiGlobals.h) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/GuiGlobals.h (.../GuiGlobals.h) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -286,6 +286,10 @@ ID_DuetRoWaterModeUIi = 0xBC00, // 188 UI -> DG // UI initiates Mode Set || responses to status query ID_DuetRoWaterModeDGr = 0xC400, // 196 UI <- DG // DG responses Mode Set + // Institutional record request and response + ID_AdjustInstitutionalRecordReq = 0xCF00, // 207 UI -> HD request institutional record + ID_AdjustInstitutionalRecordRsp = 0xD000, // 208 HD -> UI response institutional record + }; enum class GuiActionsData_Enum /*: quint8 QML does not support*/ { Index: sources/gui/qml/main.qml =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/gui/qml/main.qml (.../main.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/qml/main.qml (.../main.qml) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -47,6 +47,7 @@ import VDuetRoWaterDG 0.1 import VCloudSync 0.1 import VHDUsageInfo 0.1 +import VAdjustmentInstitutionalRecord 0.1 // States views import VHDOperationMode 0.1 import VPreTreatmentStates 0.1 @@ -148,6 +149,8 @@ VDuetRoWaterDG { id: vDuetRoWaterDG } VCloudSync { id: vCloudSync } VHDUsageInfo { id: vHDUsageInfo } + VAdjustmentInstitutionalRecord { id: vAdjustmentInstitutionalRecord } + //VAdjustIn // ---- States VHDOperationMode { id: vHDOperationMode onStandbyChanged: { Index: sources/gui/qml/pages/settings/SettingsInstitutionalRecord.qml =================================================================== diff -u --- sources/gui/qml/pages/settings/SettingsInstitutionalRecord.qml (revision 0) +++ sources/gui/qml/pages/settings/SettingsInstitutionalRecord.qml (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -0,0 +1,54 @@ +/*! + * + * Copyright (c) 2023-2024 Diality Inc. - All Rights Reserved. + * \copyright + * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN + * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. + * + * \file SettingsInformation.qml + * \author (last) Behrouz NematiPour + * \date (last) 11-Sep-2023 + * \author (original) Behrouz NematiPour + * \date (original) 18-Jul-2023 + * + */ + +// Qt +import QtQuick 2.12 + +// Qml imports +import "qrc:/globals" +import "qrc:/compounds" + + +/*! + * \brief SettingsInformation is the screen + * which queries the system for the versions and serial numbers and service records + * and display them + */ +SettingsBase { id: _root + + itemIndex : SettingsStack.InstitutionalRecord + + confirmVisible : false + TouchGrid { + anchors.top : parent.top + anchors.topMargin : 50 + anchors.horizontalCenter: parent.horizontalCenter + + colCount : 2 + colSpacing : 50 + rowCount : 6 // this number indicates when to move to the next column + rowSpacing : 0 + itemHeight : 50 + itemWidth : 575 + touchable : false + + itemsValueLeftMargin: itemWidth / 2 + 50 + itemsUnitLeftMargin : itemWidth / 4 + 50 + itemsValue : vAdjustmentInstitutionalRecord.parametersText + itemsUnit : vAdjustmentInstitutionalRecord.parametersUnit + itemsText : vAdjustmentInstitutionalRecord.parametersTitle + } + +} Index: sources/gui/qml/pages/settings/SettingsStack.qml =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/gui/qml/pages/settings/SettingsStack.qml (.../SettingsStack.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/qml/pages/settings/SettingsStack.qml (.../SettingsStack.qml) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -70,9 +70,9 @@ readonly property bool visibleSetDateTime : loggedIn || onlyUpdating readonly property bool visibleDeviceConfiguration : onlyManufacturing && loggedIn readonly property bool visibleDeviceRegistration : onlyManufacturing && loggedIn + readonly property bool visibleInstitutionalRecord : true //TODO uncomment loggedIn - enum ItemsIndex { Information , VolumeBrightness , @@ -91,7 +91,8 @@ SWUpdate , RootSSHAccess , FactoryReset , - Decommission + Decommission , + InstitutionalRecord } property var itemsText : [ qsTr("Information" ), // Information @@ -112,6 +113,7 @@ qsTr("Enable Root SSH" ), // RootSSHAccess qsTr("Factory Reset" ), // FactoryReset qsTr("Decommissioning" ), // Decommission + qsTr("Institutional Record" ), // Institutional Record ] property var itemsEnabled : [ true , // Information @@ -132,6 +134,7 @@ true , // RootSSHAccess true , // FactoryReset true , // Decommission + true , // Institutional Record ] property var itemsVisible : [ visibleInformation , // Information @@ -152,6 +155,7 @@ visibleRootSSHAccess , // RootSSHAccess visibleFactoryReset , // FactoryReset visibleDecommission , // Decommission + visibleInstitutionalRecord , // Institutional Record ] SettingsHome { id : _settingsHome @@ -246,6 +250,10 @@ push( _serviceDecommission ) break + case SettingsStack.InstitutionalRecord: + push( _settingsInstitutionalRecord ) + break + default: console.debug("Unknown Index", vIndex) break @@ -268,6 +276,7 @@ SettingsRootSSHAccess { id: _SettingsRootSSHAccess } SettingsFactoryReset { id: _serviceFactoryReset } SettingsDecommission { id: _serviceDecommission } + SettingsInstitutionalRecord { id: _settingsInstitutionalRecord } function gotoServiceMode( vservice ) { //DEBUG console.log (" 0 ---------- ", _GuiView.manufactMode, _GuiView.manufactSetup, vservice, stackView.initialItem, stackView.currentItem, stackView.depth) @@ -291,6 +300,17 @@ } } + Connections { target: vAdjustmentInstitutionalRecord + function onAdjustmentTriggered ( vValue ) { + if ( vAdjustmentInstitutionalRecord.adjustment_Accepted ) { + _settingsHome.notificationText = "" + } + else { + _settingsHome.notificationText = vAdjustmentInstitutionalRecord.text() + } + } + } + Connections { target: vHDOperationMode function onServiceChanged ( vValue ) { gotoServiceMode( vValue )} function onStandbyWaitDisinfectChanged ( vValue ) { page( _settingsHome , vValue )} Index: sources/model/MModel.h =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/model/MModel.h (.../MModel.h) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/model/MModel.h (.../MModel.h) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -86,6 +86,7 @@ #include "MAdjustHDDateTimeResponse.h" #include "MAdjustDGDateTimeResponse.h" #include "MDuetRoWaterDG.h" +#include "MAdjustHDInstitutionalRecordResponse.h" // DG Data Messages #include "MDGDrainPumpData.h" @@ -456,6 +457,8 @@ /* Alarms - Active List Response */ \ REGISTER_METATYPE( AlarmActiveListResponseData ) \ REGISTER_METATYPE( AdjustHDAlarmVolumeResponseData ) \ + REGISTER_METATYPE( AdjustInstitutionalRequestData ) \ + REGISTER_METATYPE( AdjustInstitutionalRecordResponseData ) \ @@ -589,6 +592,7 @@ ACTION_RECEIVE_BRIDGE_CONNECTION(vSOURCE, AdjustHDAlarmVolumeResponseData ) \ /* Settings - HD Data Response */ \ ACTION_RECEIVE_BRIDGE_CONNECTION(vSOURCE, HDUsageInfoResponseData ) \ + ACTION_RECEIVE_BRIDGE_CONNECTION(vSOURCE, AdjustInstitutionalRecordResponseData ) \ // /* Request */ ---------------------------------------------------------// #define ADJUST_TRANSMT_MODEL_BRIDGE_CONNECTIONS(vSOURCE) \ @@ -646,6 +650,7 @@ ADJUST_TRANSMT_BRIDGE_CONNECTION(vSOURCE, AlarmActiveListRequestData ) \ /* Settings - HD Info */ \ ADJUST_TRANSMT_BRIDGE_CONNECTION(vSOURCE, HDUsageInfoRequestData ) \ + ADJUST_TRANSMT_BRIDGE_CONNECTION(vSOURCE, AdjustInstitutionalRequestData ) \ /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. ADJUST_TRANSMT_BRIDGE_CONNECTION(vSOURCE, AlarmClearedConditionRequestData ) \ @@ -784,6 +789,7 @@ ACTION_RECEIVE_BRIDGE_DEFINITION( AdjustHDAlarmVolumeResponseData ) \ /* Settings - HD Data Response */ \ ACTION_RECEIVE_BRIDGE_DEFINITION( HDUsageInfoResponseData ) \ + ACTION_RECEIVE_BRIDGE_DEFINITION( AdjustInstitutionalRecordResponseData ) \ #define ADJUST_TRANSMT_MODEL_BRIDGE_DEFINITIONS \ @@ -842,6 +848,7 @@ ADJUST_TRANSMT_BRIDGE_DEFINITION( AlarmActiveListRequestData ) \ /* Settings - HD Info */ \ ADJUST_TRANSMT_BRIDGE_DEFINITION( HDUsageInfoRequestData ) \ + ADJUST_TRANSMT_BRIDGE_DEFINITION( AdjustInstitutionalRequestData ) \ /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. ADJUST_TRANSMT_BRIDGE_DEFINITION( AlarmClearedConditionRequestData ) \ disabled coco end */ \ @@ -902,6 +909,8 @@ ADJUST_TRANSMT_BRIDGE_DEFINITION_NOEMIT( AlarmActiveListRequestData ) \ /* Settings - HD Info */ \ ADJUST_TRANSMT_BRIDGE_DEFINITION_NOEMIT( HDUsageInfoRequestData ) \ + ADJUST_TRANSMT_BRIDGE_DEFINITION_NOEMIT( AdjustInstitutionalRequestData ) \ + /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. ADJUST_TRANSMT_BRIDGE_DEFINITION_NOEMIT( AlarmClearedConditionRequestData ) \ disabled coco end */ \ @@ -962,6 +971,7 @@ ADJUST_TRANSMT_BRIDGE_DEFINITION_PUBLIC( AlarmActiveListRequestData ) \ /* Settings - HD Info */ \ ADJUST_TRANSMT_BRIDGE_DEFINITION_PUBLIC( HDUsageInfoRequestData ) \ + ADJUST_TRANSMT_BRIDGE_DEFINITION_PUBLIC( AdjustInstitutionalRequestData ) \ /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. ADJUST_TRANSMT_BRIDGE_DEFINITION_PUBLIC( AlarmClearedConditionRequestData ) \ disabled coco end */ \ @@ -1082,6 +1092,7 @@ ACTION_RECEIVE_SIGNAL( AdjustHDAlarmVolumeResponseData ) \ /* Settings - HD data response */ \ ACTION_RECEIVE_SIGNAL( HDUsageInfoResponseData ) \ + ACTION_RECEIVE_SIGNAL( AdjustInstitutionalRecordResponseData ) \ Index: sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.cpp =================================================================== diff -u --- sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.cpp (revision 0) +++ sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.cpp (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -0,0 +1,142 @@ + +/*! + * + * Copyright (c) 2022-2024 Diality Inc. - All Rights Reserved. + * \copyright + * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN + * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. + * + * \file MAdjustHDServiceModeResponse.cpp + * \author (last) Behrouz NematiPour + * \date (last) 01-Jun-2022 + * \author (original) Behrouz NematiPour + * \date (original) 01-Jun-2022 + * + */ +#include "MAdjustHDInstitutionalRecordResponse.h" + +using namespace Model; + +QVariantList MAdjustInstitutionalRecordResponse::parameters() const { + return { + _data.mAccepted .value, + _data.mReason .value, + _data.mMinBloodFlowMLPM .value, + _data.mMaxBloodFlowMLPM .value, + _data.mMinDialysateFlowMLPM .value, + _data.mMaxDialysateFlowMLPM .value, + _data.mMinTxDurationMIN .value, + _data.mMaxTxDurationMIN .value, + _data.mMinStopHepDispBeforeTxEndMIN .value, + _data.mMaxStopHepDispBeforeTxEndMIN .value, + _data.mMinSalineBolVolumeML .value, + _data.mMaxSalineBolVolumeML .value, + _data.mMinDialysateTempC .value, + _data.mMaxDialysateTempC .value, + _data.mMinArtPressLimitWindowMMHG .value, + _data.mMaxArtPressLimitWindowMMHG .value, + _data.mMinVenPressLimitWindowMMHG .value, + _data.mMaxVenPressLimitWindowMMHG .value, + _data.mMinVenAsymPressLimitMMHG .value, + _data.mMaxVenAsymPressLimitMMHG .value, + _data.mMinUltrafiltrationVolumeL .value, + _data.mMaxUltrafiltrationVolumeL .value, + _data.mMinHepDispRateMLPM .value, + _data.mMaxHepDispRateMLPM .value, + _data.mMinHepBolVolumeML .value, + _data.mMaxHepBolVolumeML .value, + }; +} + +bool MAdjustInstitutionalRecordResponse::fromByteArray(const QByteArray &vByteArray, int *vIndex) { + int index = 0; // message data start position + if (GetValue(vByteArray, index, _data.mAccepted )) + if (GetValue(vByteArray, index, _data.mReason )) + if (GetValue(vByteArray, index, _data.mMinBloodFlowMLPM )) + if (GetValue(vByteArray, index, _data.mMaxBloodFlowMLPM )) + if (GetValue(vByteArray, index, _data.mMinDialysateFlowMLPM )) + if (GetValue(vByteArray, index, _data.mMaxDialysateFlowMLPM )) + if (GetValue(vByteArray, index, _data.mMinTxDurationMIN )) + if (GetValue(vByteArray, index, _data.mMaxTxDurationMIN )) + if (GetValue(vByteArray, index, _data.mMinStopHepDispBeforeTxEndMIN )) + if (GetValue(vByteArray, index, _data.mMaxStopHepDispBeforeTxEndMIN )) + if (GetValue(vByteArray, index, _data.mMinSalineBolVolumeML )) + if (GetValue(vByteArray, index, _data.mMaxSalineBolVolumeML )) + if (GetValue(vByteArray, index, _data.mMinDialysateTempC )) + if (GetValue(vByteArray, index, _data.mMaxDialysateTempC )) + if (GetValue(vByteArray, index, _data.mMinArtPressLimitWindowMMHG )) + if (GetValue(vByteArray, index, _data.mMaxArtPressLimitWindowMMHG )) + if (GetValue(vByteArray, index, _data.mMinVenPressLimitWindowMMHG )) + if (GetValue(vByteArray, index, _data.mMaxVenPressLimitWindowMMHG )) + if (GetValue(vByteArray, index, _data.mMinVenAsymPressLimitMMHG )) + if (GetValue(vByteArray, index, _data.mMaxVenAsymPressLimitMMHG )) + if (GetValue(vByteArray, index, _data.mMinUltrafiltrationVolumeL )) + if (GetValue(vByteArray, index, _data.mMaxUltrafiltrationVolumeL )) + if (GetValue(vByteArray, index, _data.mMinHepDispRateMLPM )) + if (GetValue(vByteArray, index, _data.mMaxHepDispRateMLPM )) + if (GetValue(vByteArray, index, _data.mMinHepBolVolumeML )) + if (GetValue(vByteArray, index, _data.mMaxHepBolVolumeML )) + return true ; + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } +} + +/*! + * \brief MAdjustHDDateTimeResponse::data + * \details Provides model's Data from the received messages data values + * \return Data + */ +AdjustInstitutionalRecordResponseData MAdjustInstitutionalRecordResponse::data() const { + Data data; + data.mAccepted = _data.mAccepted .value; + data.mReason = _data.mReason .value; + data.mMinBloodFlowMLPM = _data.mMinBloodFlowMLPM .value; + data.mMaxBloodFlowMLPM = _data.mMaxBloodFlowMLPM .value; + data.mMinDialysateFlowMLPM = _data.mMinDialysateFlowMLPM .value; + data.mMaxDialysateFlowMLPM = _data.mMaxDialysateFlowMLPM .value; + data.mMinTxDurationMIN = _data.mMinTxDurationMIN .value; + data.mMaxTxDurationMIN = _data.mMaxTxDurationMIN .value; + data.mMinStopHepDispBeforeTxEndMIN = _data.mMinStopHepDispBeforeTxEndMIN .value; + data.mMaxStopHepDispBeforeTxEndMIN = _data.mMaxStopHepDispBeforeTxEndMIN .value; + data.mMinSalineBolVolumeML = _data.mMinSalineBolVolumeML .value; + data.mMaxSalineBolVolumeML = _data.mMaxSalineBolVolumeML .value; + data.mMinDialysateTempC = _data.mMinDialysateTempC .value; + data.mMaxDialysateTempC = _data.mMaxDialysateTempC .value; + data.mMinArtPressLimitWindowMMHG = _data.mMinArtPressLimitWindowMMHG .value; + data.mMaxArtPressLimitWindowMMHG = _data.mMaxArtPressLimitWindowMMHG .value; + data.mMinVenPressLimitWindowMMHG = _data.mMinVenPressLimitWindowMMHG .value; + data.mMaxVenPressLimitWindowMMHG = _data.mMaxVenPressLimitWindowMMHG .value; + data.mMinVenAsymPressLimitMMHG = _data.mMinVenAsymPressLimitMMHG .value; + data.mMaxVenAsymPressLimitMMHG = _data.mMaxVenAsymPressLimitMMHG .value; + data.mMinUltrafiltrationVolumeL = _data.mMinUltrafiltrationVolumeL .value; + data.mMaxUltrafiltrationVolumeL = _data.mMaxUltrafiltrationVolumeL .value; + data.mMinHepDispRateMLPM = _data.mMinHepDispRateMLPM .value; + data.mMaxHepDispRateMLPM = _data.mMaxHepDispRateMLPM .value; + data.mMinHepBolVolumeML = _data.mMinHepBolVolumeML .value; + data.mMaxHepBolVolumeML = _data.mMaxHepBolVolumeML .value; + return data; +} Index: sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.h =================================================================== diff -u --- sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.h (revision 0) +++ sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.h (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -0,0 +1,115 @@ +#pragma once + +// Qt +#include + +// Project +#include "MAbstract.h" +#include "types.h" + +// forward declarations +class tst_models; + +namespace Model { + +/*! + * \brief The MAdjustServiceModeResponse class + * \details The HD Date and Time adjustment response model + * + * | MSG | CAN ID | Type | Ack | Src | Dest | Description | + * |:----:|:------:|:----:|:---:|:---:|:----:|:-----------:| + * |0xB100| 0x020 | Rsp | Y | HD | UI | Service Mode | + * + * | Payload || + * | || + * | #1:(U32) | \ref Data::mAccepted | + * | #2:(U32) | \ref Data::mReason | + * + * \sa Data + * + *

Logging info

+ * | || + * | || + * | typeText | Event | + * | unitText | HD | + * | infoText | ServiceMode | + * + */ +class MAdjustInstitutionalRecordResponse : public MAbstract { + + // friends + friend class ::tst_models; + + QVariantList parameters() const override; + + struct { + Types::U32 mAccepted ; + Types::U32 mReason ; + Types::U32 mMinBloodFlowMLPM ; + Types::U32 mMaxBloodFlowMLPM ; + Types::U32 mMinDialysateFlowMLPM ; + Types::U32 mMaxDialysateFlowMLPM ; + Types::U32 mMinTxDurationMIN ; + Types::U32 mMaxTxDurationMIN ; + Types::U32 mMinStopHepDispBeforeTxEndMIN ; + Types::U32 mMaxStopHepDispBeforeTxEndMIN ; + Types::U32 mMinSalineBolVolumeML ; + Types::U32 mMaxSalineBolVolumeML ; + Types::F32 mMinDialysateTempC ; + Types::F32 mMaxDialysateTempC ; + Types::S32 mMinArtPressLimitWindowMMHG ; + Types::S32 mMaxArtPressLimitWindowMMHG ; + Types::S32 mMinVenPressLimitWindowMMHG ; + Types::S32 mMaxVenPressLimitWindowMMHG ; + Types::S32 mMinVenAsymPressLimitMMHG ; + Types::S32 mMaxVenAsymPressLimitMMHG ; + Types::F32 mMinUltrafiltrationVolumeL ; + Types::F32 mMaxUltrafiltrationVolumeL ; + Types::F32 mMinHepDispRateMLPM ; + Types::F32 mMaxHepDispRateMLPM ; + Types::F32 mMinHepBolVolumeML ; + Types::F32 mMaxHepBolVolumeML ; + } _data; + +public: + Type_Enum typeText () const override { return Type_Enum::eEvent ; } + Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + QString infoText () const override { return QString("InstitutionalRecord") ; } + + struct Data { + bool mAccepted = true ; /*!< Accepted value of type quint32 extracted out */ + quint32 mReason = 0 ; /*!< Reason value of type quint32 extracted out */ + quint32 mMinBloodFlowMLPM ; + quint32 mMaxBloodFlowMLPM ; + quint32 mMinDialysateFlowMLPM ; + quint32 mMaxDialysateFlowMLPM ; + quint32 mMinTxDurationMIN ; + quint32 mMaxTxDurationMIN ; + quint32 mMinStopHepDispBeforeTxEndMIN ; + quint32 mMaxStopHepDispBeforeTxEndMIN ; + quint32 mMinSalineBolVolumeML ; + quint32 mMaxSalineBolVolumeML ; + float mMinDialysateTempC ; + float mMaxDialysateTempC ; + qint32 mMinArtPressLimitWindowMMHG ; + qint32 mMaxArtPressLimitWindowMMHG ; + qint32 mMinVenPressLimitWindowMMHG ; + qint32 mMaxVenPressLimitWindowMMHG ; + qint32 mMinVenAsymPressLimitMMHG ; + qint32 mMaxVenAsymPressLimitMMHG ; + float mMinUltrafiltrationVolumeL ; + float mMaxUltrafiltrationVolumeL ; + float mMinHepDispRateMLPM ; + float mMaxHepDispRateMLPM ; + float mMinHepBolVolumeML ; + float mMaxHepBolVolumeML ; + }; + + MAdjustInstitutionalRecordResponse () { } + + bool fromByteArray (const QByteArray &vByteArray , int *vIndex = nullptr) override; + Data data ( ) const ; +}; +} + +typedef Model::MAdjustInstitutionalRecordResponse::Data AdjustInstitutionalRecordResponseData; Index: sources/model/hd/adjustment/settings/MAdjustHDRequests.h =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/model/hd/adjustment/settings/MAdjustHDRequests.h (.../MAdjustHDRequests.h) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/model/hd/adjustment/settings/MAdjustHDRequests.h (.../MAdjustHDRequests.h) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -290,13 +290,43 @@ static Can::Can_Id canid () { return Can::eChlid_UI_Sync; } }; + +/*! + * \brief The MAdjustInstitutionalReqclass + * \details The HD Service Mode request model + * + * | MSG | CAN ID | Type | Ack | Src | Dest | Description | + * |:------:|:------:|:----:|:---:|:---:|:----:|:-----------:| + * | 0x8900 | 0x100 | Req | Y | UI | HD | Institutional Record Request | + * + * | Payload || + * | || + * | (N/A) || + * + */ +class MAdjustInstitutionalRecordReq : public MModel { +public: + + // disabled coco begin validated : Has been validated manually. + // This object is used statically for now, kept the logic for later usage. + QString toString() { + return toString({}); + } + // disabled coco end + static QString toString(const QVariantList &vParameters) { + return MModel::toString("InstitutionalRecord", vParameters); + } + + static Can::Can_Id canid () { return Can::eChlid_UI_HD; } +}; } -typedef Model:: MAdjustServiceModeReq AdjustServiceModeRequestData; -typedef Model:: MAdjustVersionsReq AdjustVersionsRequestData; -typedef Model:: MAdjustVersionsRsp AdjustVersionsResponseData; -typedef Model:: MAdjustServiceDatesReq AdjustServiceDatesRequestData; -typedef Model:: MAdjustHDDateTimeReq AdjustHDDateTimeRequestData; -typedef Model:: MAdjustHDAlarmVolumeReq AdjustHDAlarmVolumeRequestData; -typedef Model::MAdjustUIPostFinalResultReq AdjustUIPostFinalResultRequestData; -typedef Model:: MHDUsageInfoReq HDUsageInfoRequestData; +typedef Model:: MAdjustServiceModeReq AdjustServiceModeRequestData; +typedef Model:: MAdjustVersionsReq AdjustVersionsRequestData; +typedef Model:: MAdjustVersionsRsp AdjustVersionsResponseData; +typedef Model:: MAdjustServiceDatesReq AdjustServiceDatesRequestData; +typedef Model:: MAdjustHDDateTimeReq AdjustHDDateTimeRequestData; +typedef Model:: MAdjustHDAlarmVolumeReq AdjustHDAlarmVolumeRequestData; +typedef Model:: MAdjustUIPostFinalResultReq AdjustUIPostFinalResultRequestData; +typedef Model:: MHDUsageInfoReq HDUsageInfoRequestData; +typedef Model::MAdjustInstitutionalRecordReq AdjustInstitutionalRequestData; Index: sources/model/hd/alarm/MAlarmMapping.cpp =================================================================== diff -u -r10f946b2ecf6eed25d07d6a22216393dca34ffcc -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/model/hd/alarm/MAlarmMapping.cpp (.../MAlarmMapping.cpp) (revision 10f946b2ecf6eed25d07d6a22216393dca34ffcc) +++ sources/model/hd/alarm/MAlarmMapping.cpp (.../MAlarmMapping.cpp) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -7,7 +7,7 @@ * * \file MAlarmMapping.cpp * \author (last) Behrouz NematiPour - * \date (last) 27-Feb-2024 + * \date (last) 28-Feb-2024 * \author (original) Behrouz NematiPour * \date (original) 03-May-2021 * Index: sources/view/VView.h =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -rb6f86ce89361e33d989f6a9d01eb94c344a6384f --- sources/view/VView.h (.../VView.h) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/view/VView.h (.../VView.h) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -121,6 +121,7 @@ REGISTER_TYPE( VDuetRoWaterDG ) \ REGISTER_TYPE( VCloudSync ) \ REGISTER_TYPE( VHDUsageInfo ) \ + REGISTER_TYPE( VAdjustmentInstitutionalRecord ) \ /* Alarm */ \ REGISTER_TYPE( VAlarmStatus ) \ REGISTER_TYPE( VAlarmActiveList ) \ Index: sources/view/settings/VAdjustmentInstitutionalRecord.cpp =================================================================== diff -u --- sources/view/settings/VAdjustmentInstitutionalRecord.cpp (revision 0) +++ sources/view/settings/VAdjustmentInstitutionalRecord.cpp (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -0,0 +1,67 @@ +/*! + * + * Copyright (c) 2022-2024 Diality Inc. - All Rights Reserved. + * \copyright + * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN + * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. + * + * \file VAdjustmentServiceMode.cpp + * \author (last) Behrouz NematiPour + * \date (last) 01-Jun-2022 + * \author (original) Behrouz NematiPour + * \date (original) 01-Jun-2022 + * + */ +#include "VAdjustmentInstitutionalRecord.h" + +// Project +#include "GuiController.h" +#include "format.h" + + +VIEW_DEF_CLASS_ADJUSTMENT(VAdjustmentInstitutionalRecord) + +void View::VAdjustmentInstitutionalRecord::initConnections() { + ADJUST_VIEW_CONNECTION(AdjustInstitutionalRequestData) + ACTION_VIEW_CONNECTION(AdjustInstitutionalRecordResponseData) +} + +void View::VAdjustmentInstitutionalRecord::onActionReceive(const AdjustInstitutionalRecordResponseData &vData) +{ + adjustment_Accepted ( vData.mAccepted ); + adjustment_Reason ( vData.mReason ); + minBloodFlowMLPM ( vData.mMinBloodFlowMLPM ); + maxBloodFlowMLPM ( vData.mMaxBloodFlowMLPM ); + minDialysateFlowMLPM ( vData.mMinDialysateFlowMLPM ); + maxDialysateFlowMLPM ( vData.mMaxDialysateFlowMLPM ); + minTxDurationMIN ( vData.mMinTxDurationMIN ); + maxTxDurationMIN ( vData.mMaxTxDurationMIN ); + minStopHepDispBeforeTxEndMIN ( vData.mMinStopHepDispBeforeTxEndMIN ); + maxStopHepDispBeforeTxEndMIN ( vData.mMaxStopHepDispBeforeTxEndMIN ); + minSalineBolVolumeML ( vData.mMinSalineBolVolumeML ); + maxSalineBolVolumeML ( vData.mMaxSalineBolVolumeML ); + minDialysateTempC ( vData.mMinDialysateTempC ); + maxDialysateTempC ( vData.mMaxDialysateTempC ); + minArtPressLimitWindowMMHG ( vData.mMinArtPressLimitWindowMMHG ); + maxArtPressLimitWindowMMHG ( vData.mMaxArtPressLimitWindowMMHG ); + minVenPressLimitWindowMMHG ( vData.mMinVenPressLimitWindowMMHG ); + maxVenPressLimitWindowMMHG ( vData.mMaxVenPressLimitWindowMMHG ); + minVenAsymPressLimitMMHG ( vData.mMinVenAsymPressLimitMMHG ); + maxVenAsymPressLimitMMHG ( vData.mMaxVenAsymPressLimitMMHG ); + minUltrafiltrationVolumeL ( vData.mMinUltrafiltrationVolumeL ); + maxUltrafiltrationVolumeL ( vData.mMaxUltrafiltrationVolumeL ); + minHepDispRateMLPM ( vData.mMinHepDispRateMLPM ); + maxHepDispRateMLPM ( vData.mMaxHepDispRateMLPM ); + minHepBolVolumeML ( vData.mMinHepBolVolumeML ); + maxHepBolVolumeML ( vData.mMaxHepBolVolumeML ); + + + QStringList values; + values << QString("%1 - %2").arg(vData.mMinBloodFlowMLPM).arg(vData.mMaxBloodFlowMLPM); + parametersText(values); + + + // *** has to be the last to let the information to be set and then emit the signal *** + // *** otherwise will use the Previous values before being set. *** + adjustment ( true ); +} Index: sources/view/settings/VAdjustmentInstitutionalRecord.h =================================================================== diff -u --- sources/view/settings/VAdjustmentInstitutionalRecord.h (revision 0) +++ sources/view/settings/VAdjustmentInstitutionalRecord.h (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) @@ -0,0 +1,110 @@ + +#pragma once + +// Qt +#include + +// Project +#include "main.h" // Doxygen : do not remove +#include "VAdjustmentResponseBase.h" +#include "MAdjustHDInstitutionalRecordResponse.h" + +namespace View { + +/*! + * \brief The VAdjustmentInstitutionalRecord class + * \details View for Model's Data representation. + * + * \sa Model::MAdjustServiceModeResponse + * + */ +class VAdjustmentInstitutionalRecord : public VAdjustmentResponseBase { + Q_OBJECT + + // friends + friend class ::tst_views; + + const QStringList _titles { + tr("Blood Flow Rate" ), + tr("Dialysate Flow Rate" ), + tr("Treatment Duration" ), + tr("Heparin Stop" ), + tr("Saline Bolus Volume" ), + tr("Dialysate Temperature" ), + tr("Arterial Pressure Limit" ), + tr("Venous Pressure Limit" ), + tr("Venous Asym Pressure Limit" ), + tr("Prescribed UF Volume" ), + tr("Heparin Dispense Rate" ), + tr("Heparin Bolus Volume" ), + }; + + const QStringList _units { + tr("mL/min" ), + tr("mL/min" ), + tr("min" ), + tr("min" ), + tr("mL" ), + tr("C" ), + tr("mmHg" ), + tr("mmHg" ), + tr("mmHg" ), + tr("mL" ), + tr("mL/hr" ), + tr("mL" ), + }; + + + + // disabled coco begin validated: + // The property adjustment_Triggered has to be always true + // and to always trigger the change event to work as a notifier for GUI + // has been manually tested that it works perfectly fine + TRIGGER( bool , adjustment , 0) + // disabled coco end + + PROPERTY(quint32 , minBloodFlowMLPM , 0 ) + PROPERTY(quint32 , maxBloodFlowMLPM , 0 ) + PROPERTY(quint32 , minDialysateFlowMLPM , 0 ) + PROPERTY(quint32 , maxDialysateFlowMLPM , 0 ) + PROPERTY(quint32 , minTxDurationMIN , 0 ) + PROPERTY(quint32 , maxTxDurationMIN , 0 ) + PROPERTY(quint32 , minStopHepDispBeforeTxEndMIN , 0 ) + PROPERTY(quint32 , maxStopHepDispBeforeTxEndMIN , 0 ) + PROPERTY(quint32 , minSalineBolVolumeML , 0 ) + PROPERTY(quint32 , maxSalineBolVolumeML , 0 ) + PROPERTY(float , minDialysateTempC , 0.0 ) + PROPERTY(float , maxDialysateTempC , 0.0 ) + PROPERTY(qint32 , minArtPressLimitWindowMMHG , 0 ) + PROPERTY(qint32 , maxArtPressLimitWindowMMHG , 0 ) + PROPERTY(qint32 , minVenPressLimitWindowMMHG , 0 ) + PROPERTY(qint32 , maxVenPressLimitWindowMMHG , 0 ) + PROPERTY(qint32 , minVenAsymPressLimitMMHG , 0 ) + PROPERTY(qint32 , maxVenAsymPressLimitMMHG , 0 ) + PROPERTY(float , minUltrafiltrationVolumeL , 0.0 ) + PROPERTY(float , maxUltrafiltrationVolumeL , 0.0 ) + PROPERTY(float , minHepDispRateMLPM , 0.0 ) + PROPERTY(float , maxHepDispRateMLPM , 0.0 ) + PROPERTY(float , minHepBolVolumeML , 0.0 ) + PROPERTY(float , maxHepBolVolumeML , 0.0 ) + + PROPERTY(QStringList , parametersTitle , titles()) + PROPERTY(QStringList , parametersUnit , units ()) + PROPERTY(QStringList , parametersText , {} ) + + VIEW_DEC_CLASS_ADJUSTMENT(VAdjustmentInstitutionalRecord, AdjustInstitutionalRecordResponseData) + +private: + QStringList titles() { return _titles; } + QStringList units () { return _units ; } + +public slots: + void doAdjustment() { + AdjustInstitutionalRequestData data; + emit didAdjustment(data); + } + +signals: + void didAdjustment(const AdjustInstitutionalRequestData &vData); +}; +}