#ifndef _CORPUS_H_ #define _CORPUS_H_ #include #include #include #include "wordid.h" namespace corpus { void ReadParallelCorpus(const std::string& filename, std::vector >* f, std::vector >* e, std::set* vocab_f, std::set* vocab_e); } #endif