Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Options.h « compact-rule-table « training « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3fdb9139f2b350a61cc5c354481527bd6b1620e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#ifndef OPTIONS_H_
#define OPTIONS_H_

#include <string>

namespace moses {

struct Options {
 public:
  Options() {}
  std::string inputFile;
  std::string outputFile;
};

}  // namespace moses

#endif