Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
899 B

  1. // apgtshtiscan.h: interface for the CAPGTSHTIScanner class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_APGTSHTISCAN_H__05C561A4_6C50_11D3_8D37_00C04F949D33__INCLUDED_)
  5. #define AFX_APGTSHTISCAN_H__05C561A4_6C50_11D3_8D37_00C04F949D33__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "apgtshtiread.h"
  10. class CAPGTSHTIScanner : protected CAPGTSHTIReader
  11. {
  12. public:
  13. CAPGTSHTIScanner(CPhysicalFileReader * pPhysicalFileReader, LPCTSTR szDefaultContents = NULL);
  14. CAPGTSHTIScanner(const CAPGTSHTIReader& htiReader);
  15. ~CAPGTSHTIScanner();
  16. public:
  17. bool Read();
  18. void Scan(const CHTMLFragments& fragments);
  19. protected:
  20. virtual void ParseInterpreted();
  21. };
  22. inline bool CAPGTSHTIScanner::Read()
  23. {
  24. return CAPGTSHTIReader::Read();
  25. }
  26. #endif // !defined(AFX_APGTSHTISCAN_H__05C561A4_6C50_11D3_8D37_00C04F949D33__INCLUDED_)