mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 13:23:25 +03:00
24 lines
383 B
C++
24 lines
383 B
C++
/*
|
|
* Main.h
|
|
*
|
|
* Created on: 1 Apr 2016
|
|
* Author: hieu
|
|
*/
|
|
#pragma once
|
|
#include <iostream>
|
|
|
|
namespace Moses2
|
|
{
|
|
class Parameter;
|
|
class System;
|
|
class ThreadPool;
|
|
}
|
|
|
|
std::istream &GetInputStream(Moses2::Parameter ¶ms);
|
|
void batch_run(Moses2::Parameter ¶ms, Moses2::System &system, Moses2::ThreadPool &pool);
|
|
void run_as_server(Moses2::System &system);
|
|
|
|
void Temp();
|
|
|
|
|