// See www.openfst.org for extensive documentation on this weighted // finite-state transducer library. #ifndef FST_SCRIPT_CONVERT_H_ #define FST_SCRIPT_CONVERT_H_ #include #include #include #include #include #include namespace fst { namespace script { using ConvertInnerArgs = std::pair; using ConvertArgs = WithReturnValue; template void Convert(ConvertArgs *args) { const Fst &fst = *(std::get<0>(args->args).GetFst()); const string &new_type = std::get<1>(args->args); std::unique_ptr> result(Convert(fst, new_type)); args->retval = result ? new FstClass(*result) : nullptr; } FstClass *Convert(const FstClass &fst, const string &new_type); } // namespace script } // namespace fst #endif // FST_SCRIPT_CONVERT_H_