28 lines
419 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();
2023-02-19 15:43:24 +08:00
QString GetRunCommand(QString command);
2022-07-12 20:37:59 +08:00
void on_install_clicked();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H