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.
21 lines
523 B
21 lines
523 B
//+---------------------------------------------------------------------------
|
|
//
|
|
//
|
|
// CBreakTree - class CBreakTree
|
|
//
|
|
// History:
|
|
// created 7/99 aarayas
|
|
//
|
|
// Š1999 Microsoft Corporation
|
|
//----------------------------------------------------------------------------
|
|
#ifndef _CBREAKTREE_HPP_
|
|
#define _CBREAKTREE_HPP_
|
|
|
|
class CBreakTree
|
|
{
|
|
public:
|
|
virtual void Init(CTrie* pTrie, CTrie* pTrigramTrie) = 0;
|
|
virtual unsigned int TrigramBreak(WCHAR* pwchBegin, WCHAR* pwchEnd) = 0;
|
|
};
|
|
|
|
#endif
|