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