mirror of
https://github.com/jtdx-project/jtdx
synced 2026-08-13 17:35:38 -04:00
24 lines
360 B
C++
24 lines
360 B
C++
// -*- Mode: C++ -*-
|
|
#ifndef ABOUTDLG_H
|
|
#define ABOUTDLG_H
|
|
|
|
#include <QDialog>
|
|
#include <QScopedPointer>
|
|
|
|
namespace Ui {
|
|
class CAboutDlg;
|
|
}
|
|
|
|
class CAboutDlg : public QDialog
|
|
{
|
|
Q_OBJECT;
|
|
|
|
public:
|
|
explicit CAboutDlg(QWidget *parent = nullptr);
|
|
~CAboutDlg ();
|
|
|
|
private:
|
|
QScopedPointer<Ui::CAboutDlg> ui;
|
|
};
|
|
|
|
#endif // ABOUTDLG_H
|