mirror of https://github.com/tongzx/nt5src
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.
30 lines
665 B
30 lines
665 B
//+---------------------------------------------------------------------------
|
|
//
|
|
//
|
|
// CThaiSentTrieIter - contain the header for class CThaiSentTrieIter
|
|
//
|
|
// History:
|
|
// created 8/99 aarayas
|
|
//
|
|
// ©1999 Microsoft Corporation
|
|
//----------------------------------------------------------------------------
|
|
#ifndef _CTHAISENTTRIEITER_HPP_
|
|
#define _CTHAISENTTRIEITER_HPP_
|
|
|
|
#include <windows.h>
|
|
#include <assert.h>
|
|
#include <memory.h>
|
|
#include "lexheader.h"
|
|
#include "trie.h"
|
|
#include "NLGlib.h"
|
|
#include "ProofBase.h"
|
|
#include "thwbdef.hpp"
|
|
#include "CTrie.hpp"
|
|
|
|
class CThaiSentTrieIter : public CTrieIter {
|
|
public:
|
|
void GetNode();
|
|
WCHAR pos;
|
|
};
|
|
|
|
#endif
|