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

Windows编程

开发平台:

Visual C++

  1. //+-------------------------------------------------------------------------
  2. //
  3. //  Copyright 1992 - 1997 Microsoft Corporation
  4. //
  5. //  File:       start.hxx
  6. //
  7. //  Contents:   Start of file element class
  8. //
  9. //--------------------------------------------------------------------------
  10. #if !defined( __START_HXX__ )
  11. #define __START_HXX__
  12. #include <htmlelem.hxx>
  13. //+-------------------------------------------------------------------------
  14. //
  15. //  Class:      CStartOfFileElement
  16. //
  17. //  Purpose:    Parsing element at the beginning of an Html file
  18. //
  19. //--------------------------------------------------------------------------
  20. class CStartOfFileElement : public CHtmlElement
  21. {
  22. public:
  23.     CStartOfFileElement( CHtmlIFilter& htmlIFilter, CSerialStream& serialStream );
  24.     virtual SCODE   GetChunk( STAT_CHUNK *pStat );
  25.     virtual SCODE   GetText( ULONG *pcwcBuffer, WCHAR *awcBuffer );
  26.     virtual void    InitStatChunk( STAT_CHUNK *pStat );
  27. };
  28. #endif // __START_HXX__