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.
installer-prompt/src/installerprompt.h

26 lines
407 B

#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();
public slots:
void tryLubuntu();
void installLubuntu();
private:
Ui::InstallerPrompt *ui;
};
#endif