mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 14:32:38 +03:00
18 lines
303 B
C++
18 lines
303 B
C++
// -*- mode: c++; indent-tabs-mode: nil; tab-width: 2 -*-
|
|
#include "moses/Parameter.h"
|
|
#include "OptionsBaseClass.h"
|
|
|
|
namespace Moses
|
|
{
|
|
|
|
struct BookkeepingOptions : public OptionsBaseClass
|
|
{
|
|
bool need_alignment_info;
|
|
bool init(Parameter const& param);
|
|
BookkeepingOptions();
|
|
};
|
|
|
|
|
|
|
|
}
|