mosesdecoder/phrase-extract/postprocess-egret-forests/Options.h

23 lines
307 B
C
Raw Normal View History

#pragma once
#include <string>
namespace MosesTraining
{
namespace Syntax
{
namespace PostprocessEgretForests
{
struct Options {
public:
Options() : escape(false) {}
bool escape;
std::string splitPointsFile;
};
} // namespace PostprocessEgretForests
} // namespace Syntax
} // namespace Moses