Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Updater.h « server « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3eba52ef1edfc746befb78bcad5175f95d4ff44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// -*- c++ -*-
#pragma once

#include "moses/Util.h"
#include "moses/ChartManager.h"
#include "moses/Hypothesis.h"
#include "moses/Manager.h"
#include "moses/StaticData.h"
#include "moses/ThreadPool.h"

#if PT_UG
#include "moses/TranslationModel/UG/mmsapt.h"
#endif

#include <xmlrpc-c/base.hpp>
#include <xmlrpc-c/registry.hpp>
#include <xmlrpc-c/server_abyss.hpp>


namespace MosesServer
{
class
  Updater: public xmlrpc_c::method
{

  typedef std::map<std::string, xmlrpc_c::value> params_t;


  std::string m_src, m_trg, m_aln;
  bool m_bounded, m_add2ORLM;

public:
  Updater();

  void
  execute(xmlrpc_c::paramList const& paramList,
          xmlrpc_c::value * const  retvalP);

  void
  breakOutParams(const params_t& params);

};

}