Sanguine_Studio/app/aboutdialog.h

28 lines
433 B
C
Raw Permalink Normal View History

#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