mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 20:46:59 +03:00
21 lines
385 B
C
21 lines
385 B
C
|
/*
|
||
|
* SkeletonStatefulFF.h
|
||
|
*
|
||
|
* Created on: 27 Oct 2015
|
||
|
* Author: hieu
|
||
|
*/
|
||
|
|
||
|
#ifndef SKELETONSTATEFULFF_H_
|
||
|
#define SKELETONSTATEFULFF_H_
|
||
|
|
||
|
#include "StatefulFeatureFunction.h"
|
||
|
|
||
|
class SkeletonStatefulFF : public StatefulFeatureFunction
|
||
|
{
|
||
|
public:
|
||
|
SkeletonStatefulFF(size_t startInd, const std::string &line);
|
||
|
virtual ~SkeletonStatefulFF();
|
||
|
};
|
||
|
|
||
|
#endif /* SKELETONSTATEFULFF_H_ */
|