add SCFG::Manager

This commit is contained in:
Hieu Hoang 2016-02-26 12:26:32 +00:00
parent 3d9bc30f15
commit f7d430839d
2 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1,34 @@
/*
* Manager.cpp
*
* Created on: 23 Oct 2015
* Author: hieu
*/
#include <boost/foreach.hpp>
#include <vector>
#include <sstream>
#include "Manager.h"
using namespace std;
namespace Moses2
{
namespace SCFG
{
Manager::Manager(System &sys, const TranslationTask &task, const std::string &inputStr, long translationId)
:ManagerBase(sys, task, inputStr, translationId)
{}
Manager::~Manager() {
}
void Manager::Decode()
{
}
}
}

View File

@ -0,0 +1,35 @@
/*
* Manager.h
*
* Created on: 23 Oct 2015
* Author: hieu
*/
#pragma once
#include <queue>
#include <cstddef>
#include <string>
#include <deque>
#include "../Search/Manager.h"
namespace Moses2
{
namespace SCFG
{
class Manager : public Moses2::ManagerBase
{
public:
Manager(System &sys, const TranslationTask &task, const std::string &inputStr, long translationId);
virtual ~Manager();
void Decode();
protected:
};
}
}