summaryrefslogtreecommitdiff
path: root/src/main-view/AboutDialog.h
blob: d05c11c30c6f48acd5f1581c7eb64292a5d4d313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef ABOUT_DIALOG_H
#define ABOUT_DIALOG_H

#include <QtWidgets>

class AboutDialog: public QMessageBox
{
    Q_OBJECT

public:
    AboutDialog(QWidget* parent);

private:
    QString createAboutText();
};

#endif