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.

69 lines
1.5 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. //
  4. // CThaiTrigramBreak - class CThaiTrigramBreak
  5. //
  6. // History:
  7. // created 11/99 aarayas
  8. //
  9. // �1999 Microsoft Corporation
  10. //----------------------------------------------------------------------------
  11. #include "CThaiTrigramBreak.h"
  12. //+---------------------------------------------------------------------------
  13. //
  14. // Class: CThaiTrigramBreak
  15. //
  16. // Synopsis: Constructor - initialize local variables
  17. //
  18. // Arguments:
  19. //
  20. // Modifies:
  21. //
  22. // History: created 11/99 aarayas
  23. //
  24. // Notes:
  25. //
  26. //----------------------------------------------------------------------------
  27. CThaiTrigramBreak::CThaiTrigramBreak()
  28. {
  29. }
  30. //+---------------------------------------------------------------------------
  31. //
  32. // Class: CThaiTrigramBreak
  33. //
  34. // Synopsis: Destructor - clean up code
  35. //
  36. // Arguments:
  37. //
  38. // Modifies:
  39. //
  40. // History: created 11/99 aarayas
  41. //
  42. // Notes:
  43. //
  44. //----------------------------------------------------------------------------
  45. CThaiTrigramBreak::~CThaiTrigramBreak()
  46. {
  47. }
  48. //+---------------------------------------------------------------------------
  49. //
  50. // Class: CThaiTrigramBreak
  51. //
  52. // Synopsis: Associate the class to the string.
  53. //
  54. // Arguments:
  55. //
  56. // Modifies:
  57. //
  58. // History: created 7/99 aarayas
  59. //
  60. // Notes:
  61. //
  62. //----------------------------------------------------------------------------
  63. void CThaiTrigramBreak::Init(CTrie* pTrie, CTrie* pTrigramTrie)
  64. {
  65. assert(pTrigramTrie != NULL);
  66. thaiTrigramIter.Init(pTrigramTrie);
  67. }