X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=emul%2Femul.h;h=b64013fd1c3e05eda0cfc3e3efb8893817232c74;hb=5f3952176a4e9a00ca8dd5ec4a6b994958f89e0a;hp=10fd3eb839e5604af9055c61e09c8a37ab9dd8e7;hpb=669ef4744ad8c96dbd79e2bd8613bddf1121511f;p=bertos.git diff --git a/emul/emul.h b/emul/emul.h old mode 100755 new mode 100644 index 10fd3eb8..b64013fd --- a/emul/emul.h +++ b/emul/emul.h @@ -15,6 +15,12 @@ /*#* *#* $Log$ + *#* Revision 1.4 2006/02/15 09:11:17 bernie + *#* Add keyboard emulator. + *#* + *#* Revision 1.3 2006/01/23 23:12:08 bernie + *#* Let Doxygen see through C++ protected section. + *#* *#* Revision 1.2 2006/01/16 03:51:51 bernie *#* Fix boilerplate. *#* @@ -28,14 +34,14 @@ #include -#ifdef __cplusplus +#if defined(__cplusplus) || defined(__doxygen__) // fwd decls class QApplication; class EmulWin; class EmulPRT; class EmulLCD; -class EmulKBD; +class EmulKbd; class QCheckBox; class QSlider; class QLabel; @@ -44,11 +50,11 @@ class Emulator { // data members public: - QApplication *emulApp; ///< QT Application. - EmulWin *emulWin; ///< Main window. + QApplication *emulApp; ///< QT Application. + EmulWin *emulWin; ///< Main window. - EmulLCD *emulLCD; ///< Display emulator. - EmulKBD *emulKBD; ///< Keyboard emulator. + EmulLCD *emulLCD; ///< Display emulator. + EmulKbd *emulKbd; ///< Keyboard emulator. // construction Emulator(int &argc, char **argv);