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.

20 lines
503 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. //
  4. // CBreakTree - class CBreakTree
  5. //
  6. // History:
  7. // created 7/99 aarayas
  8. //
  9. // �1999 Microsoft Corporation
  10. //----------------------------------------------------------------------------
  11. #ifndef _CBREAKTREE_HPP_
  12. #define _CBREAKTREE_HPP_
  13. class CBreakTree
  14. {
  15. public:
  16. virtual void Init(CTrie* pTrie, CTrie* pTrigramTrie) = 0;
  17. virtual unsigned int TrigramBreak(WCHAR* pwchBegin, WCHAR* pwchEnd) = 0;
  18. };
  19. #endif