mosesdecoder/scripts/fuzzy-match/Alignments.h
2012-10-24 17:53:11 +01:00

21 lines
250 B
C++

#pragma once
#include <string>
#include <vector>
#include <map>
class Alignments
{
public:
std::vector< std::map<int, int> > m_alignS2T, m_alignT2S;
Alignments(const std::string &str, size_t sourceSize, size_t targetSize);
protected:
};