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.

27 lines
580 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Thai WordBreak
  4. //
  5. // Thai WordBreak Interface Header File.
  6. //
  7. // History:
  8. // created 5/99 aarayas
  9. //
  10. // �1999 Microsoft Corporation
  11. //----------------------------------------------------------------------------
  12. #include <windows.h>
  13. #include <assert.h>
  14. #include <memory.h>
  15. #include "lexheader.h"
  16. #include "trie.h"
  17. #include "NLGlib.h"
  18. #include "ProofBase.h"
  19. class Lexicon
  20. {
  21. public:
  22. Lexicon(WCHAR* szFileName);
  23. ~Lexicon();
  24. protected:
  25. PMFILE pMapFile;
  26. TRIECTRL *pTrieCtrl;
  27. };