2014-04-03 19:29:13 +00:00
|
|
|
// -*- Mode: C++ -*-
|
2012-05-22 17:09:48 +00:00
|
|
|
#ifndef ABOUTDLG_H
|
|
|
|
#define ABOUTDLG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2014-03-30 01:31:40 +00:00
|
|
|
#include <QScopedPointer>
|
2012-05-22 17:09:48 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
2014-03-30 01:31:40 +00:00
|
|
|
class CAboutDlg;
|
2012-05-22 17:09:48 +00:00
|
|
|
}
|
|
|
|
|
2016-06-22 15:19:24 +00:00
|
|
|
class CAboutDlg
|
|
|
|
: public QDialog
|
2012-05-22 17:09:48 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-02-23 15:19:41 +00:00
|
|
|
explicit CAboutDlg(QWidget *parent = nullptr);
|
2014-03-30 01:31:40 +00:00
|
|
|
~CAboutDlg ();
|
|
|
|
|
2012-05-22 17:09:48 +00:00
|
|
|
private:
|
2014-03-30 01:31:40 +00:00
|
|
|
QScopedPointer<Ui::CAboutDlg> ui;
|
2012-05-22 17:09:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ABOUTDLG_H
|