You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
394 B
24 lines
394 B
#ifndef RESULTDIALOG_H
|
|
#define RESULTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <resultviewmodel.h>
|
|
|
|
namespace Ui {
|
|
class ResultDialog;
|
|
}
|
|
|
|
class ResultDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Q_INVOKABLE explicit ResultDialog(QtMvvm::ViewModel *viewModel, QWidget *parent = nullptr);
|
|
~ResultDialog();
|
|
|
|
private:
|
|
ResultViewModel *_viewModel;
|
|
Ui::ResultDialog *ui;
|
|
};
|
|
|
|
#endif // RESULTDIALOG_H
|
|
|