aboutsummaryrefslogtreecommitdiffstats
path: root/src/aboutdialog.h
blob: f37f0e9330e1faeeb94998fd77ac829fdd202067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#include <QDialog>
#include "./ui_aboutdialog.h"

QT_BEGIN_NAMESPACE
namespace Ui { class AboutDialog; }
QT_END_NAMESPACE

class AboutDialog : public QDialog {
    Q_OBJECT

public:
    AboutDialog(QWidget *parent = nullptr);
    ~AboutDialog();

private:
    Ui::AboutDialog* ui;
};