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