deep-wine-runner/VM/mainwindow.h

28 lines
376 B
C
Raw Normal View History

2022-07-12 20:37:59 +08:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void on_browser_clicked();
void on_install_clicked();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H