#ifndef _ALIGNMENT_H_ #define _ALIGNMENT_H_ #include #include #include namespace fs = boost::filesystem; using namespace std; class Alignment { public: Alignment(const string& filename); vector > GetLinks(int sentence_index) const; void WriteBinary(const fs::path& filepath); private: vector > > alignments; }; #endif