23 lines
435 B
C++
23 lines
435 B
C++
#ifndef ABOUTDIALOG_H
|
|
#define ABOUTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui { class AboutDialog; }
|
|
|
|
class AboutDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDialog(const QString& appName, const QString& version,
|
|
const QString& algoVersion = QString(),
|
|
QWidget *parent = nullptr);
|
|
~AboutDialog();
|
|
|
|
private:
|
|
Ui::AboutDialog *ui;
|
|
};
|
|
|
|
#endif // ABOUTDIALOG_H
|