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

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

namespace Moses
{

std::ostream& operator<<(std::ostream &out, const PhraseProperty &obj)
{
  out << "Base phrase property";
  return out;
}

}