// fst-decl.h // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // // \file // This file contains declarations of classes in the OpenFst library. #ifndef FST_LIB_FST_DECL_H__ #define FST_LIB_FST_DECL_H__ namespace fst { class SymbolTable; class SymbolTableIterator; class LogWeight; class TropicalWeight; class LogArc; class StdArc; template class ConstFst; template class ExpandedFst; template class Fst; template class MutableFst; template class VectorFst; template class ArcSortFst; template class ClosureFst; template class ComposeFst; template class ConcatFst; template class DeterminizeFst; template class DeterminizeFst; template class DifferenceFst; template class IntersectFst; template class InvertFst; template class MapFst; template class ProjectFst; template class RelabelFst; template class ReplaceFst; template class RmEpsilonFst; template class UnionFst; template class Heap; typedef ConstFst StdConstFst; typedef ExpandedFst StdExpandedFst; typedef Fst StdFst; typedef MutableFst StdMutableFst; typedef VectorFst StdVectorFst; template class StdArcSortFst; typedef ClosureFst StdClosureFst; typedef ComposeFst StdComposeFst; typedef ConcatFst StdConcatFst; typedef DeterminizeFst StdDeterminizeFst; typedef DifferenceFst StdDifferenceFst; typedef IntersectFst StdIntersectFst; typedef InvertFst StdInvertFst; typedef ProjectFst StdProjectFst; typedef RelabelFst StdRelabelFst; typedef ReplaceFst StdReplaceFst; typedef RmEpsilonFst StdRmEpsilonFst; typedef UnionFst StdUnionFst; } #endif // FST_LIB_FST_DECL_H__