Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-31 10:02:08

0001 /*=============================================================================
0002     Copyright (c) 2006 Tobias Schwinger
0003     http://spirit.sourceforge.net/
0004 
0005   Distributed under the Boost Software License, Version 1.0. (See accompanying
0006   file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0007 =============================================================================*/
0008 #if !defined(BOOST_SPIRIT_DISTINCT_FWD_HPP)
0009 #define BOOST_SPIRIT_DISTINCT_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     template<typename CharT> class chset;
0018 
0019     template <typename CharT = char, typename TailT = chset<CharT> >
0020     class distinct_parser;
0021 
0022     template <typename CharT = char, typename TailT = chset<CharT> >
0023     class distinct_directive;
0024 
0025     template <typename ScannerT = scanner<> >
0026     class dynamic_distinct_parser;
0027 
0028     template <typename ScannerT = scanner<> >
0029     class dynamic_distinct_directive;
0030 
0031 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
0032 
0033 }} // namespace BOOST_SPIRIT_CLASSIC_NS
0034 
0035 #endif
0036 
0037