00001 #ifndef TEST_H 00002 #define TEST_H 00003 00004 #include <QtGui/QMainWindow> 00005 #include "ui_test.h" 00006 00007 class test : public QMainWindow 00008 { 00009 Q_OBJECT 00010 00011 public: 00012 test(QWidget *parent = 0, Qt::WFlags flags = 0); 00013 ~test(); 00014 00015 private slots: 00016 void task1(); 00017 00018 private: 00019 Ui::testClass ui; 00020 }; 00021 00022 #endif // TEST_H