File indexing completed on 2025-01-31 10:02:05
0001
0002
0003
0004
0005
0006
0007
0008 #if !defined(BOOST_SPIRIT_SYMBOLS_FWD_HPP)
0009 #define BOOST_SPIRIT_SYMBOLS_FWD_HPP
0010
0011 #include <boost/spirit/home/classic/namespace.hpp>
0012
0013 namespace boost { namespace spirit {
0014
0015 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
0016
0017 namespace impl
0018 {
0019 template <typename CharT, typename T>
0020 class tst;
0021 }
0022
0023 template
0024 <
0025 typename T = int,
0026 typename CharT = char,
0027 typename SetT = impl::tst<T, CharT>
0028 >
0029 class symbols;
0030
0031 template <typename T, typename SetT>
0032 class symbol_inserter;
0033
0034 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
0035
0036 }}
0037
0038 #endif
0039