home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / appwiz / hierwiz / template / zoomdlg.h < prev   
C/C++ Source or Header  |  1998-03-05  |  1KB  |  39 lines

  1. // zoomdlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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 Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CZoomDlg dialog
  15.  
  16. class CZoomDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CZoomDlg(CWnd* pParent = NULL); // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CZoomDlg)
  24.     enum { IDD = IDD_CUSTZOOM };
  25.     int     m_zoomX;
  26.     int     m_zoomY;
  27.     //}}AFX_DATA
  28.  
  29. // Implementation
  30. protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.  
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CZoomDlg)
  35.         // NOTE: the ClassWizard will add member functions here
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.