2024-08-20 19:21:20 +02:00

15 lines
275 B
C

#pragma once
#include <QMessageBox>
void notifyExtractionResult(bool result)
{
if (result)
{
QMessageBox::information(Q_NULLPTR, "NDS Factory", "Extraction completed!");
}
else
{
QMessageBox::critical(Q_NULLPTR, "NDS Factory", "Error during the extraction!");
}
}