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