mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-08 04:27:53 +03:00
18 lines
280 B
C++
18 lines
280 B
C++
#pragma once
|
|
#include <string>
|
|
#include "legacy/ThreadPool.h"
|
|
|
|
class System;
|
|
class Manager;
|
|
|
|
class TranslationTask : public Task
|
|
{
|
|
public:
|
|
TranslationTask(System &system, const std::string &line);
|
|
virtual ~TranslationTask();
|
|
virtual void Run();
|
|
|
|
protected:
|
|
Manager *m_mgr;
|
|
};
|