Your warranties manager
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
349 B

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