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 / rootpage.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.3 KB  |  56 lines

  1. // RootPage.h : Interface for CRootPage class
  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. // 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. // CRootPage dialog
  15.  
  16. class CHttpSvrDoc;
  17.  
  18. class CRootPage : public CPropertyPage
  19. {
  20.     DECLARE_DYNCREATE(CRootPage)
  21.     CRootPage();
  22.  
  23. // Construction
  24. public:
  25.     CHttpSvrDoc* m_pDoc;
  26.     CRootPage( CHttpSvrDoc* pDoc );
  27.     ~CRootPage();
  28.  
  29. // Dialog Data
  30.     //{{AFX_DATA(CRootPage)
  31.     enum { IDD = IDD_ROOTPAGE };
  32.     CString m_strRoot;
  33.     //}}AFX_DATA
  34.  
  35.  
  36. // Overrides
  37.     // ClassWizard generate virtual function overrides
  38.     //{{AFX_VIRTUAL(CRootPage)
  39.     public:
  40.     virtual void OnOK();
  41.     virtual BOOL OnKillActive();
  42.     protected:
  43.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44.     //}}AFX_VIRTUAL
  45.  
  46. // Implementation
  47. protected:
  48.     // Generated message map functions
  49.     //{{AFX_MSG(CRootPage)
  50.     afx_msg void OnReset();
  51.     afx_msg void OnChangeRootDir();
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54.  
  55. };
  56.