00001 #ifndef ABOUT_H 00002 #define ABOUT_H 00003 00004 #include <QDialog> 00005 00006 namespace Ui { 00007 class About; 00008 } 00009 00010 00011 class About : public QDialog 00012 { 00013 Q_OBJECT 00014 00015 public: 00016 explicit About(QWidget *parent = 0); 00017 ~About(); 00018 00019 private: 00020 Ui::About *ui; 00021 00022 private slots: 00023 void on_pushButton_clicked(); 00024 }; 00025 00026 #endif // ABOUT_H