diff options
author | Chris Dyer <redpony@gmail.com> | 2014-03-13 23:03:51 -0400 |
---|---|---|
committer | Chris Dyer <redpony@gmail.com> | 2014-03-13 23:03:51 -0400 |
commit | 4d653c9f1769855c3b8a835922b5ab56a92bd94b (patch) | |
tree | 718a8cee94b291f5a3f2a4b1b8fe69aea2df549c | |
parent | 3b4b66479ac80177393eb7953c3bcc268f3d9551 (diff) |
missing commit
-rw-r--r-- | decoder/translator.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/decoder/translator.h b/decoder/translator.h index c0800e84..72b2f0b0 100644 --- a/decoder/translator.h +++ b/decoder/translator.h @@ -98,4 +98,20 @@ class RescoreTranslator : public Translator { boost::shared_ptr<RescoreTranslatorImpl> pimpl_; }; +class Tree2StringTranslatorImpl; +class Tree2StringTranslator : public Translator { + public: + Tree2StringTranslator(const boost::program_options::variables_map& conf); + virtual std::string GetDecoderType() const; + protected: + bool TranslateImpl(const std::string& src, + SentenceMetadata* smeta, + const std::vector<double>& weights, + Hypergraph* minus_lm_forest); + void ProcessMarkupHintsImpl(const std::map<std::string, std::string>& kv); + void SentenceCompleteImpl(); + private: + boost::shared_ptr<Tree2StringTranslatorImpl> pimpl_; +}; + #endif |