RedPanda-CPP/RedPandaIDE/widgets/aboutdialog.h

23 lines
297 B
C
Raw Normal View History

2021-10-03 23:12:20 +08:00
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H
#include <QDialog>
namespace Ui {
class AboutDialog;
}
class AboutDialog : public QDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
~AboutDialog();
private:
Ui::AboutDialog *ui;
};
#endif // ABOUTDIALOG_H