START.HXX
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- //+-------------------------------------------------------------------------
- //
- // Copyright 1992 - 1997 Microsoft Corporation
- //
- // File: start.hxx
- //
- // Contents: Start of file element class
- //
- //--------------------------------------------------------------------------
- #if !defined( __START_HXX__ )
- #define __START_HXX__
- #include <htmlelem.hxx>
- //+-------------------------------------------------------------------------
- //
- // Class: CStartOfFileElement
- //
- // Purpose: Parsing element at the beginning of an Html file
- //
- //--------------------------------------------------------------------------
- class CStartOfFileElement : public CHtmlElement
- {
- public:
- CStartOfFileElement( CHtmlIFilter& htmlIFilter, CSerialStream& serialStream );
- virtual SCODE GetChunk( STAT_CHUNK *pStat );
- virtual SCODE GetText( ULONG *pcwcBuffer, WCHAR *awcBuffer );
- virtual void InitStatChunk( STAT_CHUNK *pStat );
- };
- #endif // __START_HXX__