home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / xped3 / xped3app.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  1.1 KB  |  53 lines

  1. #if !defined(__xped3app_h)              // Sentry, use file only if it's not already included.
  2. #define __xped3app_h
  3.  
  4. /*  Project xped3
  5.     
  6.     Copyright ⌐ 1993. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    xped3.exe Application
  9.     FILE:         xped3app.h
  10.     AUTHOR:       
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for XpEd3App (TApplication).      
  16. */
  17.  
  18.  
  19. #include <owl\owlpch.h>
  20. #pragma hdrstop
  21.  
  22. #include <owl\statusba.h>
  23. #include <owl\controlb.h>
  24. #include <owl\buttonga.h>
  25.  
  26. #include "xped3app.rh"            // Definition of all resources.
  27.  
  28.  
  29. //{{TApplication = XpEd3App}}
  30. class XpEd3App : public TApplication {
  31. private:
  32.  
  33. private:
  34.     void SetupSpeedBar (TDecoratedMDIFrame *frame);
  35.  
  36. public:
  37.     XpEd3App ();
  38.     virtual ~XpEd3App ();
  39.  
  40. //{{XpEd3AppVIRTUAL_BEGIN}}
  41. public:
  42.     virtual void InitMainWindow();
  43. //{{XpEd3AppVIRTUAL_END}}
  44. //{{XpEd3AppRSP_TBL_BEGIN}}
  45. protected:
  46.     void CmHelpAbout ();
  47. //{{XpEd3AppRSP_TBL_END}}
  48. DECLARE_RESPONSE_TABLE(XpEd3App);
  49. };    //{{XpEd3App}}
  50.  
  51.  
  52. #endif                                      // __xped3app_h sentry.
  53.