COUNTER.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // counter.h : Defines the initialization routines for the DLL.
  3. //
  4. // Written by Jeff Miller
  5. // of Microsoft Product Support Services, Languages Developer Support
  6. //
  7. // This is a part of the Microsoft Foundation Classes C++ library.
  8. // Copyright (C) 1992-1998 Microsoft Corporation
  9. // All rights reserved.
  10. //
  11. // This source code is only intended as a supplement to the
  12. // Microsoft Foundation Classes Reference and related
  13. // electronic documentation provided with the library.
  14. // See these sources for detailed information regarding the
  15. // Microsoft Foundation Classes product.
  16. class CCounterExtension : public CHttpServer
  17. {
  18. public:
  19. CCounterExtension();
  20. ~CCounterExtension();
  21. BOOL GetExtensionVersion(HSE_VERSION_INFO* pVer);
  22. void Default(CHttpServerContext* pCtxt);
  23. void Clock(CHttpServerContext* pCtxt);
  24. DECLARE_PARSE_MAP()
  25. private:
  26. CMapStringToString m_Paths;
  27. int GetPageCount(CString& szPage);
  28. void OutputXBM(CHttpServerContext* pCtxt, CString& szDigits);
  29. };