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
222 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() function
233 ConstFst(const ConstFst<A> &fst) : impl_(fst.impl_) { in ConstFst() function
237 explicit ConstFst(const Fst<A> &fst) : impl_(new ConstFstImpl<A>(fst)) {} in ConstFst() function
239 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 …]
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;