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.
22 lines
342 B
22 lines
342 B
2 years ago
|
#ifndef INSTALLERPROMPT_H
|
||
|
#define INSTALLERPROMPT_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
namespace Ui { class InstallerPrompt; }
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
class InstallerPrompt : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
InstallerPrompt(QWidget *parent = nullptr);
|
||
|
~InstallerPrompt();
|
||
|
|
||
|
private:
|
||
|
Ui::InstallerPrompt *ui;
|
||
|
};
|
||
|
#endif
|