mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-05 02:22:21 +03:00
23 lines
383 B
C++
23 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();
|
|
|
|
|