mosesdecoder/moses2/InputPathBase.h
2017-02-01 00:27:14 +00:00

33 lines
421 B
C++

/*
* InputPath.h
*
* Created on: 23 Oct 2015
* Author: hieu
*/
#pragma once
#include <iostream>
#include <vector>
#include "SubPhrase.h"
#include "legacy/Range.h"
namespace Moses2
{
class PhraseTable;
class InputPathBase
{
public:
const InputPathBase *prefixPath;
Range range;
InputPathBase(MemPool &pool, const Range &range,
size_t numPt, const InputPathBase *prefixPath);
};
}