chxcharstack.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:0k
源码类别:

Symbian

开发平台:

C/C++

  1. #ifndef CHXCHARSTACK_H
  2. #define CHXCHARSTACK_H
  3. #include "hxcom.h"
  4. #include "ihxpckts.h" // IHXBuffer
  5. #include "hxccf.h" // IHXCommonClassFactory
  6. class CHXCharStack
  7. {
  8. public:
  9.     CHXCharStack(IUnknown* pUnk);
  10.     ~CHXCharStack();
  11.     HX_RESULT AddChar(char ch);
  12.     HX_RESULT Finish(REF(IHXBuffer*) pBuf);
  13.     void Reset();
  14. private:
  15.     ULONG32 m_ulOffset;
  16.     IHXBuffer* m_pBuffer;
  17.     IHXCommonClassFactory* m_pCCF;
  18. };
  19. #endif /* CHXCHARSTACK_H */