GENPAGE.H
上传用户:btxinjin
上传日期:2007-01-04
资源大小:83k
文件大小:1k
源码类别:

Web服务器

开发平台:

Visual C++

  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. // CGenPage dialog
  8. class CHttpSvrDoc;
  9. class CGenPage : public CPropertyPage
  10. {
  11. DECLARE_DYNCREATE(CGenPage)
  12. // Construction
  13. public:
  14.  CGenPage( CHttpSvrDoc* pDoc );
  15. CHttpSvrDoc* m_pDoc;
  16. CGenPage();
  17. ~CGenPage();
  18. // Dialog Data
  19. //{{AFX_DATA(CGenPage)
  20. enum { IDD = IDD_GENPAGE };
  21. BOOL    m_bListIcon;
  22. BOOL    m_bAllowListing;
  23. BOOL    m_bLoggingOn;
  24. //}}AFX_DATA
  25. // Overrides
  26. // ClassWizard generate virtual function overrides
  27. //{{AFX_VIRTUAL(CGenPage)
  28. public:
  29. virtual void OnOK();
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. // Generated message map functions
  36. //{{AFX_MSG(CGenPage)
  37. afx_msg void OnAllowList();
  38. virtual BOOL OnInitDialog();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };