// 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. // // Copyright 2005-2010 Google, Inc. // Author: riley@google.com (Michael Riley) // // \file // This file contains declarations of classes in the Fst template library. // #ifndef FST_LIB_FST_DECL_H__ #define FST_LIB_FST_DECL_H__ #include namespace fst { class SymbolTable; class SymbolTableIterator; template class FloatWeightTpl; template class TropicalWeightTpl; template class LogWeightTpl; template class MinMaxWeightTpl; typedef FloatWeightTpl FloatWeight; typedef TropicalWeightTpl TropicalWeight; typedef LogWeightTpl LogWeight; typedef MinMaxWeightTpl MinMaxWeight; template class ArcTpl; typedef ArcTpl StdArc; typedef ArcTpl LogArc; template class CompactFst; template class ConstFst; template class EditFst; 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 DifferenceFst; template class IntersectFst; template class InvertFst; template class ArcMapFst; template class ProjectFst; template class RandGenFst; template class RelabelFst; template class ReplaceFst; template class RmEpsilonFst; template class UnionFst; template class Heap; template class AcceptorCompactor; template class StringCompactor; template class UnweightedAcceptorCompactor; template class UnweightedCompactor; template class WeightedStringCompactor; template class DefaultReplaceStateTable; typedef CompactFst > StdCompactAcceptorFst; typedef CompactFst< StdArc, StringCompactor > StdCompactStringFst; typedef CompactFst > StdCompactUnweightedAcceptorFst; typedef CompactFst > StdCompactUnweightedFst; typedef CompactFst< StdArc, WeightedStringCompactor > StdCompactWeightedStringFst; 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; template class IntegerFilterState; typedef IntegerFilterState CharFilterState; typedef IntegerFilterState ShortFilterState; typedef IntegerFilterState IntFilterState; template class Matcher; template class SequenceComposeFilter; template class AltSequenceComposeFilter; template class MatchComposeFilter; } // namespace fst #endif // FST_LIB_FST_DECL_H__