13 lines
191 B
C++
13 lines
191 B
C++
#ifndef ABOUTDLG_H
|
|
#define ABOUTDLG_H
|
|
|
|
#include <basedlg.h>
|
|
|
|
class AboutDlg : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
explicit AboutDlg(QWidget *parent = nullptr);
|
|
};
|
|
|
|
#endif // ABOUTDLG_H
|