home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / dlgcbr.zip / DLGCBAR.H < prev    next >
C/C++ Source or Header  |  1994-06-30  |  1KB  |  59 lines

  1. /*****************************************************************************
  2.   DLGCBAR.H
  3.  
  4.   Purpose: 
  5.       Interface for CTheApp.  This class encapsulates the initialization,
  6.       running, and termination of the DLGCBAR application.  There must be
  7.       exactly one object of class CTheApp in the application.  The object
  8.       must be declared at the global level.
  9.  
  10.   Functions:
  11.       CTheApp::CTheApp()          -- constructor
  12.       CTheApp::~CTheApp()         -- destructor
  13.       CTheApp::FirstInstance()    -- locate first instance of app
  14.       CTheApp::InitInstance()     -- initialize app-instance
  15.       CTheApp::OnHelpAbout()        -- display About box
  16.  
  17.   Development Team: 
  18.       Mary Kirtland
  19.  
  20.   Written by Microsoft Product Support Services, Premier ISV Support
  21.   Copyright (c) 1994 Microsoft Corporation. All rights reserved.
  22. \****************************************************************************/
  23.  
  24. #ifndef __DLGCBAR_H__
  25.     #define __DLGCBAR_H__
  26.     
  27. class CTheApp : public CWinApp
  28. {   
  29. public:
  30.     CTheApp();
  31.  
  32. // Attributes
  33. public:
  34.  
  35. // Operations
  36. public:
  37.  
  38. // Overrides
  39. public:
  40.     virtual BOOL InitInstance();
  41.  
  42. // Implementation
  43. public:
  44.     virtual ~CTheApp();  
  45.       
  46. protected:      
  47.     BOOL FirstInstance();
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(CTheApp)
  51.     afx_msg void OnHelpAbout();
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56. #endif //__DLGCBAR_H__
  57.  
  58.     
  59.