test
[ws10smt.git] / extools / lex_trans_tbl.h
blob81d6ccc92f0c0a87f8827318196577d3cd94e319
1 /*
2 * lex_trans_tbl.h
4 * Created on: May 25, 2010
5 * Author: Vlad
6 */
8 #ifndef LEX_TRANS_TBL_H_
9 #define LEX_TRANS_TBL_H_
11 #include <map>
13 class LexTranslationTable
15 public:
17 std::map < std::pair<WordID,WordID>,int > word_translation;
18 std::map <WordID, int> total_foreign;
19 std::map <WordID, int> total_english;
20 void createTTable(const char* buf);
24 #endif /* LEX_TRANS_TBL_H_ */