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