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