Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:45:07

0001 /*==============================================================================
0002     Copyright (c) 2005-2010 Joel de Guzman
0003     Copyright (c) 2010 Thomas Heller
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 #ifndef BOOST_PHOENIX_CORE_TERMINAL_FWD_HPP
0009 #define BOOST_PHOENIX_CORE_TERMINAL_FWD_HPP
0010 
0011 namespace boost { namespace phoenix
0012 {
0013     namespace rule
0014     {
0015         struct argument;
0016         struct custom_terminal;
0017         struct terminal;
0018     }
0019 
0020     template <typename T, typename Dummy = void>
0021     struct is_custom_terminal;
0022 
0023     template <typename T, typename Dummy = void>
0024     struct custom_terminal;
0025 }}
0026 
0027 #endif