Home | History | Annotate | Download | only in fst

Lines Matching defs:VectorFstBaseImpl

42 class VectorFstBaseImpl : public FstImpl<typename State::Arc> {
48 VectorFstBaseImpl() : start_(kNoStateId) {}
50 ~VectorFstBaseImpl() {
161 DISALLOW_COPY_AND_ASSIGN(VectorFstBaseImpl);
179 // This is a VectorFstBaseImpl container that holds VectorState's. It
182 class VectorFstImpl : public VectorFstBaseImpl< VectorState<A> > {
190 using VectorFstBaseImpl<VectorState<A> >::Start;
191 using VectorFstBaseImpl<VectorState<A> >::NumStates;
192 using VectorFstBaseImpl<VectorState<A> >::GetState;
193 using VectorFstBaseImpl<VectorState<A> >::ReserveArcs;
197 typedef VectorFstBaseImpl< VectorState<A> > BaseImpl;