Checks if the report is present in the online database
| 123 | |
| 124 | /// Checks if the report is present in the online database |
| 125 | bool VulkanDatabase::checkReportPresent(VulkanDeviceInfo device, int& reportId) |
| 126 | { |
| 127 | reportId = getReportId(device); |
| 128 | return (reportId > -1) ? true : false; |
| 129 | } |
| 130 | |
| 131 | bool VulkanDatabase::uploadReport(QJsonObject json, QString& message) |
| 132 | { |
no outgoing calls
no test coverage detected