mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 04:27:53 +03:00
19 lines
355 B
C++
19 lines
355 B
C++
/*
|
|
* StatefulFeatureFunction.cpp
|
|
*
|
|
* Created on: 24 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
|
|
#include "StatefulFeatureFunction.h"
|
|
|
|
StatefulFeatureFunction::StatefulFeatureFunction(size_t startInd, const std::string &line)
|
|
:FeatureFunction(startInd, line)
|
|
{
|
|
}
|
|
|
|
StatefulFeatureFunction::~StatefulFeatureFunction() {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|