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