mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-06 19:49:41 +03:00
26 lines
426 B
C++
26 lines
426 B
C++
/*
|
|
* StatelessFeatureFunction.cpp
|
|
*
|
|
* Created on: 24 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
|
|
#include "StatelessFeatureFunction.h"
|
|
|
|
namespace Moses2
|
|
{
|
|
|
|
StatelessFeatureFunction::StatelessFeatureFunction(size_t startInd, const std::string &line)
|
|
:FeatureFunction(startInd, line)
|
|
{
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
StatelessFeatureFunction::~StatelessFeatureFunction() {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|
|
}
|
|
|