mosesdecoder/contrib/other-builds/moses2/InputPath.cpp

22 lines
330 B
C++
Raw Normal View History

2015-10-24 01:19:31 +03:00
/*
* InputPath.cpp
*
* Created on: 23 Oct 2015
* Author: hieu
*/
#include "InputPath.h"
2015-10-25 18:58:26 +03:00
InputPath::InputPath(const SubPhrase &subPhrase, const Moses::Range &range, size_t numPt)
2015-10-24 01:19:31 +03:00
:m_subPhrase(subPhrase)
,m_range(range)
2015-10-24 15:31:43 +03:00
,m_targetPhrases(numPt)
2015-10-24 01:19:31 +03:00
{
}
InputPath::~InputPath() {
// TODO Auto-generated destructor stub
}