aboutdialog.h 345 B

123456789101112131415161718192021222324
  1. #ifndef ABOUTDIALOG_H
  2. #define ABOUTDIALOG_H
  3. #include <QDialog>
  4. namespace Ui {
  5. class AboutDialog;
  6. }
  7. class AboutDialog : public QDialog {
  8. Q_OBJECT
  9. public:
  10. explicit AboutDialog(QWidget* parent = nullptr);
  11. ~AboutDialog();
  12. private slots:
  13. void on_btnOk_clicked();
  14. private:
  15. Ui::AboutDialog* ui;
  16. };
  17. #endif // ABOUTDIALOG_H