mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 22:14:57 +03:00
12 lines
205 B
C++
12 lines
205 B
C++
// Separate header because this is used often.
|
|
#ifndef LM_WORD_INDEX__
|
|
#define LM_WORD_INDEX__
|
|
|
|
namespace lm {
|
|
typedef unsigned int WordIndex;
|
|
} // namespace lm
|
|
|
|
typedef lm::WordIndex LMWordIndex;
|
|
|
|
#endif
|