summaryrefslogtreecommitdiff
path: root/aboutdialog.h
blob: 596550798138581752c0ea693c527372824711d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H

#include <QAbstractButton>
#include <QDialog>

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;
};

#endif // ABOUTDIALOG_H