Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:33:20

0001 /*=============================================================================
0002     Copyright (c) 2001-2011 Joel de Guzman
0003     Copyright (c) 2005 Eric Niebler
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_FUSION_CONS_FWD_HPP_INCLUDED)
0009 #define BOOST_FUSION_CONS_FWD_HPP_INCLUDED
0010 
0011 namespace boost { namespace fusion
0012 {
0013     struct nil_;
0014     #ifndef nil
0015     typedef nil_ nil;
0016     #endif
0017 
0018     template <typename Car, typename Cdr = nil_>
0019     struct cons;
0020 }}
0021 
0022 #endif
0023