Program Listing for File response_options.h

Return to documentation for file (src/translator/response_options.h)

#ifndef SRC_BERGAMOT_RESPONSE_OPTIONS_H_
#define SRC_BERGAMOT_RESPONSE_OPTIONS_H_
#include <string>

namespace marian {
namespace bergamot {

enum ConcatStrategy {
  FAITHFUL,

  SPACE
};

struct ResponseOptions {
  bool qualityScores{false};
  bool alignment{false};

  bool HTML{false};

  bool sentenceMappings{false};

  ConcatStrategy concatStrategy{ConcatStrategy::FAITHFUL};
};

}  // namespace bergamot
}  // namespace marian

#endif  //  SRC_BERGAMOT_RESPONSE_OPTIONS_H_