00001 #ifndef ABOUT_H 00002 #define ABOUT_H 00003 00004 # include <QDialog> 00005 # include "ui_about.h" 00006 00007 class AboutDlg : public QDialog 00008 { 00009 Q_OBJECT 00010 00011 public: 00012 AboutDlg(QWidget *parent = 0) : QDialog(parent) 00013 { 00014 ui.setupUi(this); 00015 }; 00016 00017 private: 00018 Ui::AboutDlg ui; 00019 }; 00020 00021 #endif
1.5.0