home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / internet / httpsvr / genpage.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.1 KB  |  51 lines

  1. // GenPage.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1997-1998 Microsoft Corporation
  5. // All rights reserved.
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CGenPage dialog
  9.  
  10. class CHttpSvrDoc;
  11.  
  12. class CGenPage : public CPropertyPage
  13. {
  14.     DECLARE_DYNCREATE(CGenPage)
  15.  
  16. // Construction
  17. public:
  18.      CGenPage( CHttpSvrDoc* pDoc );
  19.     CHttpSvrDoc* m_pDoc;
  20.     CGenPage();
  21.     ~CGenPage();
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CGenPage)
  25.     enum { IDD = IDD_GENPAGE };
  26.     BOOL    m_bListIcon;
  27.     BOOL    m_bAllowListing;
  28.     BOOL    m_bLoggingOn;
  29.     //}}AFX_DATA
  30.  
  31.  
  32. // Overrides
  33.     // ClassWizard generate virtual function overrides
  34.     //{{AFX_VIRTUAL(CGenPage)
  35.     public:
  36.     virtual void OnOK();
  37.     protected:
  38.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. protected:
  43.     // Generated message map functions
  44.     //{{AFX_MSG(CGenPage)
  45.     afx_msg void OnAllowList();
  46.     virtual BOOL OnInitDialog();
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49.  
  50. };
  51.