Searched refs:ConstFst (Results 1 – 3 of 3) sorted by relevance
28 template <class A> class ConstFst; variable222 class ConstFst : public ExpandedFst<A> {224 friend class StateIterator< ConstFst<A> >;225 friend class ArcIterator< ConstFst<A> >;231 ConstFst() : impl_(new ConstFstImpl<A>()) {} in ConstFst() function233 ConstFst(const ConstFst<A> &fst) : impl_(fst.impl_) { in ConstFst() function237 explicit ConstFst(const Fst<A> &fst) : impl_(new ConstFstImpl<A>(fst)) {} in ConstFst() function239 virtual ~ConstFst() { if (!impl_->DecrRefCount()) delete impl_; } in ~ConstFst()270 virtual ConstFst<A> *Copy() const { in Copy()272 return new ConstFst<A>(impl_); in Copy()[all …]
45 REGISTER_FST(ConstFst, StdArc);46 REGISTER_FST(ConstFst, LogArc);
33 template <class A> class ConstFst; variable57 typedef ConstFst<StdArc> StdConstFst;