Home
last modified time | relevance | path

Searched refs:ConstFst (Results 1 – 3 of 3) sorted by relevance

/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dconst-fst.h28 template <class A> class ConstFst; variable
224 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() function
235 ConstFst(const ConstFst<A> &fst) : impl_(fst.impl_) { in ConstFst() function
239 explicit ConstFst(const Fst<A> &fst) : impl_(new ConstFstImpl<A>(fst)) {} in ConstFst() function
241 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 …]
Dfst.cpp45 REGISTER_FST(ConstFst, StdArc);
46 REGISTER_FST(ConstFst, LogArc);
Dfst-decl.h33 template <class A> class ConstFst; variable
57 typedef ConstFst<StdArc> StdConstFst;