2010-08-10 17:12:00 +04:00
|
|
|
// $Id: $
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
Moses - factored phrase-based language decoder
|
|
|
|
Copyright (C) 2010 University of Edinburgh
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
#ifndef moses_TranslationSystem_h
|
|
|
|
#define moses_TranslationSystem_h
|
|
|
|
|
2011-02-24 16:14:42 +03:00
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
2010-08-10 17:12:00 +04:00
|
|
|
/**
|
|
|
|
* Enables the configuration of multiple translation systems.
|
|
|
|
**/
|
|
|
|
class TranslationSystem {
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Creates a system with the given id */
|
2012-12-21 20:49:32 +04:00
|
|
|
TranslationSystem();
|
2010-08-10 17:12:00 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-19 18:37:00 +04:00
|
|
|
|
2010-09-14 14:13:06 +04:00
|
|
|
static const std::string DEFAULT;
|
2010-08-10 17:12:00 +04:00
|
|
|
|
|
|
|
|
|
|
|
private:
|
2012-12-21 19:28:34 +04:00
|
|
|
|
2010-08-10 17:12:00 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|