mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 20:46:59 +03:00
18 lines
267 B
C++
18 lines
267 B
C++
// -*- mode: c++; indent-tabs-mode: nil; tab-width: 2 -*-
|
|
#pragma once
|
|
#include <string>
|
|
#include "OptionsBaseClass.h"
|
|
|
|
namespace Moses2
|
|
{
|
|
|
|
struct
|
|
LookupOptions : public OptionsBaseClass
|
|
{
|
|
bool init(Parameter const& param);
|
|
LookupOptions() {}
|
|
};
|
|
|
|
}
|
|
|