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:
Diffstat (limited to 'moses/src/Input.cpp')
-rw-r--r--moses/src/Input.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/moses/src/Input.cpp b/moses/src/Input.cpp
deleted file mode 100644
index 24be57c76..000000000
--- a/moses/src/Input.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-#include "Input.h"
-
-
-InputType::InputType(long translationId) : m_translationId(translationId) {}
-InputType::~InputType() {}
-
-TO_STRING_BODY(InputType);
-
-std::ostream& operator<<(std::ostream& out,InputType const& x)
-{
- x.Print(out); return out;
-}