mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 04:27:53 +03:00
24 lines
310 B
C++
24 lines
310 B
C++
/*
|
|
* Weights.cpp
|
|
*
|
|
* Created on: 24 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
|
|
#include "Weights.h"
|
|
|
|
Weights::Weights() {
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
Weights::~Weights() {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream &out, const Weights &obj)
|
|
{
|
|
|
|
return out;
|
|
}
|