Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Input.cpp « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24be57c7602e260f8f4c06a3fae5b1b6b1d3742f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "Input.h"


InputType::InputType(long translationId) : m_translationId(translationId) {}
InputType::~InputType() {}

TO_STRING_BODY(InputType);

std::ostream& operator<<(std::ostream& out,InputType const& x) 
{
	x.Print(out); return out;
}