28 lines
433 B
C
28 lines
433 B
C
|
|
#ifndef ABOUTDIALOG_H
|
||
|
|
#define ABOUTDIALOG_H
|
||
|
|
|
||
|
|
#include <QDialog>
|
||
|
|
#include <QAbstractButton>
|
||
|
|
|
||
|
|
namespace Ui {
|
||
|
|
class AboutDialog;
|
||
|
|
}
|
||
|
|
|
||
|
|
class AboutDialog : public QDialog
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit AboutDialog(QWidget *parent = nullptr);
|
||
|
|
~AboutDialog();
|
||
|
|
|
||
|
|
private slots:
|
||
|
|
void on_buttonBox_clicked(QAbstractButton *button);
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::AboutDialog *ui;
|
||
|
|
QString GetCompilerArch() const;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // ABOUTDIALOG_H
|