File size: 249 Bytes
158b61b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "PhraseProperty.h"

namespace Moses
{

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

void PhraseProperty::Print(std::ostream &out) const
{
  out << "Base phrase property";
}

}