mosesdecoder/contrib/other-builds/moses2/StatefulFeatureFunction.h
2015-10-24 19:54:16 +01:00

21 lines
379 B
C++

/*
* StatefulFeatureFunction.h
*
* Created on: 24 Oct 2015
* Author: hieu
*/
#ifndef STATEFULFEATUREFUNCTION_H_
#define STATEFULFEATUREFUNCTION_H_
#include "FeatureFunction.h"
class StatefulFeatureFunction : public FeatureFunction
{
public:
StatefulFeatureFunction(size_t startInd);
virtual ~StatefulFeatureFunction();
};
#endif /* STATEFULFEATUREFUNCTION_H_ */