home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / wizard97 / intropg.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  63 lines

  1. // IntroPage.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #if !defined(AFX_INTROPAGE_H__99E7B192_4A5C_11D1_BF2C_00C04FC99F83__INCLUDED_)
  14. #define AFX_INTROPAGE_H__99E7B192_4A5C_11D1_BF2C_00C04FC99F83__INCLUDED_
  15.  
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif // _MSC_VER > 1000
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CIntroPage dialog
  22.  
  23. class CIntroPage : public CPropertyPageEx
  24. {
  25.     DECLARE_DYNCREATE(CIntroPage)
  26.  
  27. // Construction
  28. public:
  29.     CIntroPage();
  30.     ~CIntroPage();
  31.  
  32. // Dialog Data
  33.     //{{AFX_DATA(CIntroPage)
  34.     enum { IDD = IDD_INTRO_NEW };
  35.         // NOTE - ClassWizard will add data members here.
  36.         //    DO NOT EDIT what you see in these blocks of generated code !
  37.     //}}AFX_DATA
  38.  
  39.  
  40. // Overrides
  41.     // ClassWizard generate virtual function overrides
  42.     //{{AFX_VIRTUAL(CIntroPage)
  43.     public:
  44.     virtual BOOL OnSetActive();
  45.     protected:
  46.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47.     //}}AFX_VIRTUAL
  48.  
  49. // Implementation
  50. protected:
  51.     // Generated message map functions
  52.     //{{AFX_MSG(CIntroPage)
  53.         // NOTE: the ClassWizard will add member functions here
  54.     //}}AFX_MSG
  55.     DECLARE_MESSAGE_MAP()
  56.  
  57. };
  58.  
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  61.  
  62. #endif // !defined(AFX_INTROPAGE_H__99E7B192_4A5C_11D1_BF2C_00C04FC99F83__INCLUDED_)
  63.