symbols_fwd.hpp 993 B

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