aboutwindow.h 339 B

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