* @brief Returns the name of the selected dataset */
| 359 | * @brief Returns the name of the selected dataset |
| 360 | */ |
| 361 | QString ImportDatasetWidget::getSelectedDataset() const { |
| 362 | if (!ui.lwDatasets->selectedItems().isEmpty()) |
| 363 | return ui.lwDatasets->selectedItems().at(0)->text(); |
| 364 | return {}; |
| 365 | } |
| 366 | |
| 367 | /** |
| 368 | * @brief Initiates the processing of the dataset's metadata file and of the dataset itself. |
no test coverage detected