diff -r 9b00ca3cc206 -r b78fa4cdbf2b example/DemoGUI/mainwindow.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/DemoGUI/mainwindow.h Thu Aug 05 16:35:33 2010 +0530 @@ -0,0 +1,25 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include +#include "HomeView.h" + +namespace Ui { + class MainWindow; +} + +class MainWindow : public QMainWindow { + Q_OBJECT +public: + MainWindow(QWidget *parent = 0); + ~MainWindow(); + +protected: + void changeEvent(QEvent *e); + +private: + Ui::MainWindow *ui; + HomeView* Ptr2HomeView; +}; + +#endif // MAINWINDOW_H