// -*- mode: c++; indent-tabs-mode: nil; tab-width: 2 -*- | |
namespace Moses2 | |
{ | |
class Parameter; | |
struct OptionsBaseClass { | |
virtual bool | |
update(std::map<std::string,xmlrpc_c::value>const& params); | |
bool | |
check(std::map<std::string, xmlrpc_c::value> const& param, | |
std::string const key, bool dfltval); | |
}; | |
} | |