qbreak/app/aboutdlg.h
2022-04-17 15:37:04 +03:00

23 lines
273 B
C++

#ifndef ABOUTDLG_H
#define ABOUTDLG_H
#include <QDialog>
namespace Ui {
class AboutDlg;
}
class AboutDlg : public QDialog
{
Q_OBJECT
public:
explicit AboutDlg(QWidget *parent = nullptr);
~AboutDlg();
private:
Ui::AboutDlg *ui;
};
#endif // ABOUTDLG_H