mirror of
https://github.com/vcmi/vcmi.git
synced 2025-03-07 15:10:43 +02:00
25 lines
340 B
C
25 lines
340 B
C
|
#ifndef UPDATEDIALOG_MOC_H
|
||
|
#define UPDATEDIALOG_MOC_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class UpdateDialog;
|
||
|
}
|
||
|
|
||
|
class UpdateDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit UpdateDialog(QWidget *parent = nullptr);
|
||
|
~UpdateDialog();
|
||
|
|
||
|
static void showUpdateDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::UpdateDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // UPDATEDIALOG_MOC_H
|