mosesdecoder/contrib/other-builds/moses2/StatefulFeatureFunction.h
2015-10-27 15:46:37 +00:00

21 lines
404 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, const std::string &line);
virtual ~StatefulFeatureFunction();
};
#endif /* STATEFULFEATUREFUNCTION_H_ */