distinct_fwd.hpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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_DISTINCT_FWD_HPP)
  8. #define BOOST_SPIRIT_DISTINCT_FWD_HPP
  9. #include <boost/spirit/home/classic/namespace.hpp>
  10. namespace boost { namespace spirit {
  11. BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
  12. template<typename CharT> class chset;
  13. template <typename CharT = char, typename TailT = chset<CharT> >
  14. class distinct_parser;
  15. template <typename CharT = char, typename TailT = chset<CharT> >
  16. class distinct_directive;
  17. template <typename ScannerT = scanner<> >
  18. class dynamic_distinct_parser;
  19. template <typename ScannerT = scanner<> >
  20. class dynamic_distinct_directive;
  21. BOOST_SPIRIT_CLASSIC_NAMESPACE_END
  22. }} // namespace BOOST_SPIRIT_CLASSIC_NS
  23. #endif