Fix boilerplate.
[bertos.git] / emul / emulwin.h
1 /**
2  * \file
3  * <!--
4  * Copyright 2006 Develer S.r.l. (http://www.develer.com/)
5  * Copyright 2000, 2001 Bernardo Innocenti <bernie@codewiz.org>
6  * This file is part of DevLib - See README.devlib for information.
7  * -->
8  *
9  * \version $Id$
10  *
11  * \author Bernardo Innocenti <bernie@develer.com>
12  *
13  * \brief Main Qt window for embedded applications emulator (interface)
14  */
15
16 /*#*
17  *#* $Log$
18  *#* Revision 1.2  2006/01/16 03:51:51  bernie
19  *#* Fix boilerplate.
20  *#*
21  *#* Revision 1.1  2006/01/16 03:37:12  bernie
22  *#* Add emulator skeleton.
23  *#*
24  *#*/
25
26 #ifndef EMUL_EMULWIN_H
27 #define EMUL_EMULWIN_H
28
29 #include <qmainwindow.h>
30
31 // fwd decls
32 class Emulator;
33
34 class EmulWin : public QMainWindow
35 {
36         Q_OBJECT
37
38 // construction
39 public:
40         EmulWin(Emulator *emul);
41         ~EmulWin();
42
43 protected:
44         void closeEvent(QCloseEvent *);
45
46 private slots:
47         void about();
48 };
49
50 #endif // EMUL_EMULWIN_H
51