home *** CD-ROM | disk | FTP | other *** search
/ Mastering Microsoft Visual C++ 4 (2nd Edition) / VisualC4.ISO / dlgdemo / dlgdemo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-30  |  937 b   |  38 lines

  1. // DlgDemo.h : main header file for the DLGDEMO application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.    #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"      // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CDlgDemoApp:
  12. // See DlgDemo.cpp for the implementation of this class
  13. //
  14.  
  15. class CDlgDemoApp : public CWinApp
  16. {
  17. public:
  18.    CDlgDemoApp();
  19.  
  20. // Overrides
  21.    // ClassWizard generated virtual function overrides
  22.    //{{AFX_VIRTUAL(CDlgDemoApp)
  23.    public:
  24.    virtual BOOL InitInstance();
  25.    //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28.  
  29.    //{{AFX_MSG(CDlgDemoApp)
  30.       // NOTE - the ClassWizard will add and remove member functions here.
  31.       //    DO NOT EDIT what you see in these blocks of generated code !
  32.    //}}AFX_MSG
  33.    DECLARE_MESSAGE_MAP()
  34. };
  35.  
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38.