Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:09:00

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_STORED_RULE_FWD_HPP)
0009 #define BOOST_SPIRIT_STORED_RULE_FWD_HPP
0010 
0011 #include <boost/spirit/home/classic/namespace.hpp>
0012 #include <boost/spirit/home/classic/core/nil.hpp>
0013 
0014 namespace boost { namespace spirit {
0015 
0016 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
0017 
0018     template <
0019         typename T0 = nil_t
0020       , typename T1 = nil_t
0021       , typename T2 = nil_t
0022       , bool EmbedByValue = false
0023     >
0024     class stored_rule;
0025 
0026 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
0027 
0028 }} // namespace BOOST_SPIRIT_CLASSIC_NS
0029 
0030 #endif
0031