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

  1. // LunchPg.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. /////////////////////////////////////////////////////////////////////////////
  14. // CLunchPage dialog
  15.  
  16. class CLunchPage : public CPropertyPage
  17. {
  18.     DECLARE_DYNCREATE(CLunchPage)
  19.  
  20. // Construction
  21. public:
  22.     CLunchPage();
  23.     ~CLunchPage();
  24.  
  25. // Dialog Data
  26.     //{{AFX_DATA(CLunchPage)
  27.     enum { IDD = IDD_LUNCH };
  28.         // NOTE - ClassWizard will add data members here.
  29.         //    DO NOT EDIT what you see in these blocks of generated code !
  30.     //}}AFX_DATA
  31.  
  32.  
  33. // Overrides
  34.     // ClassWizard generate virtual function overrides
  35.     //{{AFX_VIRTUAL(CLunchPage)
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.     // Generated message map functions
  43.     //{{AFX_MSG(CLunchPage)
  44.     virtual BOOL OnInitDialog();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47.  
  48. };
  49.