mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 05:55:02 +03:00
21 lines
210 B
C++
21 lines
210 B
C++
/*
|
|
* InputPaths.cpp
|
|
*
|
|
* Created on: 23 Oct 2015
|
|
* Author: hieu
|
|
*/
|
|
#include <iostream>
|
|
#include "InputPathsBase.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace Moses2
|
|
{
|
|
|
|
InputPathsBase::~InputPathsBase()
|
|
{
|
|
}
|
|
|
|
}
|
|
|