Searched refs:ConstFst (Results 1 – 3 of 3) sorted by relevance
28 template <class A> class ConstFst; variable224 class ConstFst : public ExpandedFst<A> {226 friend class StateIterator< ConstFst<A> >;227 friend class ArcIterator< ConstFst<A> >;233 ConstFst() : impl_(new ConstFstImpl<A>()) {} in ConstFst() function235 ConstFst(const ConstFst<A> &fst) : impl_(fst.impl_) { in ConstFst() function239 explicit ConstFst(const Fst<A> &fst) : impl_(new ConstFstImpl<A>(fst)) {} in ConstFst() function241 virtual ~ConstFst() { if (!impl_->DecrRefCount()) delete impl_; } in ~ConstFst()272 virtual ConstFst<A> *Copy() const { in Copy()274 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;