23 lines
288 B
C
23 lines
288 B
C
|
#ifndef ABOUTDLG_H
|
||
|
#define ABOUTDLG_H
|
||
|
|
||
|
#include <LoQClass/loqdialog.h>
|
||
|
|
||
|
namespace Ui {
|
||
|
class AboutDlg;
|
||
|
}
|
||
|
|
||
|
class AboutDlg : public LoQDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AboutDlg(QWidget *parent = nullptr);
|
||
|
~AboutDlg();
|
||
|
|
||
|
private:
|
||
|
Ui::AboutDlg *ui;
|
||
|
};
|
||
|
|
||
|
#endif // ABOUTDLG_H
|