home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pcmagazi / 1992 / 04 / stdapp.h < prev    next >
C/C++ Source or Header  |  1991-11-19  |  486b  |  33 lines

  1. // stdapp.h RHS 11/1/91
  2.  
  3. #if !defined(STDAPP_H)
  4. #define STDAPP_H
  5.  
  6. #include"app.h"
  7. #include"window.h"
  8. #include"keyboard.h"
  9.  
  10. class StandardApplication : public Application
  11.     {
  12. protected:
  13.     KeyBoard keyboard;
  14.     Screen screen;
  15. public:
  16.     StandardApplication(void)
  17.         {
  18.         }
  19.  
  20.     virtual void InitApp(void)
  21.         {
  22.         screen.Init();
  23.  
  24.         screen.Paint();
  25.         }
  26.     ~StandardApplication(void)
  27.         {
  28.         }
  29.     };
  30.  
  31. #endif
  32.  
  33.