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