• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Copyright (c) 2006 Tobias Schwinger
3     http://spirit.sourceforge.net/
4 
5   Distributed under the Boost Software License, Version 1.0. (See accompanying
6   file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 =============================================================================*/
8 #if !defined(BOOST_SPIRIT_SYMBOLS_FWD_HPP)
9 #define BOOST_SPIRIT_SYMBOLS_FWD_HPP
10 
11 #include <boost/spirit/home/classic/namespace.hpp>
12 
13 namespace boost { namespace spirit {
14 
15 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
16 
17     namespace impl
18     {
19         template <typename CharT, typename T>
20         class tst;
21     }
22 
23     template
24     <
25         typename T = int,
26         typename CharT = char,
27         typename SetT = impl::tst<T, CharT>
28     >
29     class symbols;
30 
31     template <typename T, typename SetT>
32     class symbol_inserter;
33 
34 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
35 
36 }} // namespace BOOST_SPIRIT_CLASSIC_NS
37 
38 #endif
39 
40