Home | History | Annotate | Download | only in fst

Lines Matching defs:MapFst

19 // Compatability file for old-style Map() functions and MapFst class
54 class MapFst : public ArcMapFst<A, B, C> {
61 MapFst(const Fst<A> &fst, const C &mapper, const MapFstOptions& opts)
64 MapFst(const Fst<A> &fst, C* mapper, const MapFstOptions& opts)
67 MapFst(const Fst<A> &fst, const C &mapper)
70 MapFst(const Fst<A> &fst, C* mapper) : ArcMapFst<A, B, C>(fst, mapper) {}
73 MapFst(const ArcMapFst<A, B, C> &fst, bool safe = false)
76 // Get a copy of this MapFst. See Fst<>::Copy() for further doc.
77 virtual MapFst<A, B, C> *Copy(bool safe = false) const {
78 return new MapFst(*this, safe);
83 // Specialization for MapFst.
85 class StateIterator< MapFst<A, B, C> >
93 // Specialization for MapFst.
95 class ArcIterator< MapFst<A, B, C> >