X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=emul%2Femulwin.h;h=9d919505eedf831604eff1c692c629248146fe6c;hb=HEAD;hp=957a02156c8692126e93b68b29aaac62060318f2;hpb=669ef4744ad8c96dbd79e2bd8613bddf1121511f;p=bertos.git diff --git a/emul/emulwin.h b/emul/emulwin.h deleted file mode 100755 index 957a0215..00000000 --- a/emul/emulwin.h +++ /dev/null @@ -1,51 +0,0 @@ -/** - * \file - * - * - * \version $Id$ - * - * \author Bernardo Innocenti - * - * \brief Main Qt window for embedded applications emulator (interface) - */ - -/*#* - *#* $Log$ - *#* Revision 1.2 2006/01/16 03:51:51 bernie - *#* Fix boilerplate. - *#* - *#* Revision 1.1 2006/01/16 03:37:12 bernie - *#* Add emulator skeleton. - *#* - *#*/ - -#ifndef EMUL_EMULWIN_H -#define EMUL_EMULWIN_H - -#include - -// fwd decls -class Emulator; - -class EmulWin : public QMainWindow -{ - Q_OBJECT - -// construction -public: - EmulWin(Emulator *emul); - ~EmulWin(); - -protected: - void closeEvent(QCloseEvent *); - -private slots: - void about(); -}; - -#endif // EMUL_EMULWIN_H -