Searched defs:FstClass (Results 1 - 1 of 1) sorted by relevance

/external/openfst/src/include/fst/script/
H A Dfst-class.h29 // FstClass which hides the arc types. This allows clients to load
44 // the only one) and FstClass serves as the base class for all
139 class FstClass : public FstClassBase { class in namespace:fst::script
142 static FstClass *Read(istream &stream,
145 FSTERROR() << "FstClass::Read: options header not specified";
153 return ReadTypedFst<FstClass, Fst<Arc> >(stream, opts);
158 explicit FstClass(Fst<Arc> *fst) : impl_(new FstClassImpl<Arc>(fst)) { } function in class:fst::script::FstClass
160 explicit FstClass(const FstClass &other) : impl_(other.impl_->Copy()) { } function in class:fst::script::FstClass
162 static FstClass *Rea
218 explicit FstClass(FstClassImplBase *impl) : impl_(impl) { } function in class:fst::script::FstClass
[all...]

Completed in 71 milliseconds