mosesdecoder/lm/word_index.hh
2011-11-17 12:49:55 +00:00

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