File size: 435 Bytes
158b61b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
/*
* StatelessFeatureFunction.cpp
*
* Created on: 24 Oct 2015
* Author: hieu
*/
#include "StatelessFeatureFunction.h"
namespace Moses2
{
StatelessFeatureFunction::StatelessFeatureFunction(size_t startInd,
const std::string &line) :
FeatureFunction(startInd, line)
{
// TODO Auto-generated constructor stub
}
StatelessFeatureFunction::~StatelessFeatureFunction()
{
// TODO Auto-generated destructor stub
}
}
|