emulwin.h
Go to the documentation of this file.00001
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057 #ifndef EMUL_EMULWIN_H
00058 #define EMUL_EMULWIN_H
00059
00060 #include <QtGui/QMainWindow>
00061
00062
00063 class Emulator;
00064
00065 class EmulWin : public QMainWindow
00066 {
00067 Q_OBJECT
00068
00069
00070 public:
00071 EmulWin(Emulator *emul);
00072 ~EmulWin();
00073
00074 protected:
00075 void closeEvent(QCloseEvent *);
00076
00077 private slots:
00078 void about();
00079 };
00080
00081 #endif // EMUL_EMULWIN_H
00082