/* * lex_trans_tbl.h * * Created on: May 25, 2010 * Author: Vlad */ #ifndef LEX_TRANS_TBL_H_ #define LEX_TRANS_TBL_H_ #include class LexTranslationTable { public: std::map < std::pair,int > word_translation; std::map total_foreign; std::map total_english; void createTTable(const char* buf); }; #endif /* LEX_TRANS_TBL_H_ */