mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 04:27:53 +03:00
21 lines
379 B
C++
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_ */
|