mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2025-01-04 01:45:52 +03:00
11 lines
202 B
C++
11 lines
202 B
C++
#pragma once
|
|
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
typedef std::vector<std::string> Word;
|
|
typedef std::vector<Word> Phrase;
|
|
|
|
void LabelDeEn(const Phrase &source, std::ostream &out);
|