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:
authorHieu Hoang <hieuhoang@gmail.com>2014-10-09 15:52:06 +0400
committerHieu Hoang <hieuhoang@gmail.com>2014-10-09 15:52:06 +0400
commitbf089b56ac975d4aedb116dc55c78009b6e19a48 (patch)
tree69a77b703c285fe0bf03e851eddc3671bd3657bd /moses/TranslationTask.h
parente7916239d5accff202d0b9230448d558a6675376 (diff)
consistent namespace
Diffstat (limited to 'moses/TranslationTask.h')
-rw-r--r--moses/TranslationTask.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/moses/TranslationTask.h b/moses/TranslationTask.h
index 39a66a74a..f0f237c35 100644
--- a/moses/TranslationTask.h
+++ b/moses/TranslationTask.h
@@ -7,12 +7,8 @@
namespace Moses
{
- class InputType;
- class OutputCollector;
-}
-
-namespace MosesCmd
-{
+class InputType;
+class OutputCollector;
class IOWrapper;
@@ -26,7 +22,7 @@ class TranslationTask : public Moses::Task
public:
- TranslationTask(Moses::InputType* source, MosesCmd::IOWrapper &ioWrapper,
+ TranslationTask(Moses::InputType* source, Moses::IOWrapper &ioWrapper,
bool outputSearchGraphSLF,
boost::shared_ptr<Moses::HypergraphOutput<Moses::Manager> > hypergraphOutput);
@@ -39,7 +35,7 @@ public:
private:
Moses::InputType* m_source;
- MosesCmd::IOWrapper &m_ioWrapper;
+ Moses::IOWrapper &m_ioWrapper;
bool m_outputSearchGraphSLF;
boost::shared_ptr<Moses::HypergraphOutput<Moses::Manager> > m_hypergraphOutput;