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.
28 lines
609 B
28 lines
609 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Thai WordBreak
|
|
//
|
|
// Thai WordBreak Interface Header File.
|
|
//
|
|
// History:
|
|
// created 5/99 aarayas
|
|
//
|
|
// ©1999 Microsoft Corporation
|
|
//----------------------------------------------------------------------------
|
|
#include <windows.h>
|
|
#include <assert.h>
|
|
#include <memory.h>
|
|
#include "lexheader.h"
|
|
#include "trie.h"
|
|
//#include "NLGlib.h"
|
|
#include "ProofBase.h"
|
|
|
|
class Lexicon
|
|
{
|
|
public:
|
|
Lexicon(WCHAR* szFileName);
|
|
~Lexicon();
|
|
protected:
|
|
PMFILE pMapFile;
|
|
TRIECTRL *pTrieCtrl;
|
|
};
|