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

  1. // Http.h : structures, functions and definitions for http service
  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. class CRequest;
  14.  
  15. class CHitDoc : public CObject
  16. {
  17. protected: // create from serialization only
  18.     CHitDoc();
  19.     DECLARE_DYNCREATE(CHitDoc)
  20.  
  21.     void ParseFileName( const CString& strFullPath );
  22. public:
  23.     CHitDoc( CString strFile );
  24.     CHitDoc( CRequest* pRequest );
  25.     int operator==( CHitDoc* pHit );
  26.  
  27. public:
  28.     CString     m_strFile;
  29.     CString     m_strFolder;
  30.     CString     m_strCommand;
  31.     CString     m_strURL;
  32.     CTime       m_timeLastHit;
  33.     BOOL        m_bFolder;
  34.     DWORD       m_dwExecute;
  35.     int         m_nHits;
  36.     int         m_nStatus;
  37. };
  38.