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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Germann <ugermann@inf.ed.ac.uk>2015-03-15 23:38:31 +0300
committerUlrich Germann <ugermann@inf.ed.ac.uk>2015-03-15 23:38:31 +0300
commitad805c133bb61dac3b9d1555d221db71739d90d4 (patch)
tree1937e47b012c7e97df6308627c805ec5e514ed17 /moses/TreeInput.h
parent16d8ef67f0f2c350dbdc071a5102084d48c44600 (diff)
Instances of InputType (and derived classes) now know which TranslationTask (if any) created them.
This is a first step towards providing phrase tables etc. access to context information etc. associated with specific translation tasks.
Diffstat (limited to 'moses/TreeInput.h')
-rw-r--r--moses/TreeInput.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/moses/TreeInput.h b/moses/TreeInput.h
index d65f22ddf..d9ea2d0ba 100644
--- a/moses/TreeInput.h
+++ b/moses/TreeInput.h
@@ -1,3 +1,4 @@
+// -*- c++ -*-
#ifndef moses_TreeInput_h
#define moses_TreeInput_h
@@ -7,6 +8,7 @@
namespace Moses
{
+ class TranslationTask;
//! @todo what is this?
class XMLParseOutput
{
@@ -44,8 +46,7 @@ protected:
bool ProcessAndStripXMLTags(std::string &line, std::vector<XMLParseOutput> &sourceLabels, std::vector<XmlOption*> &res);
public:
- TreeInput() {
- }
+ TreeInput(TranslationTask const* ttask) : Sentence(ttask) { }
InputTypeEnum GetType() const {
return TreeInputType;