Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:46:24

0001 /*=============================================================================
0002     Copyright (c) 2010 Christopher Schmidt
0003 
0004     Distributed under the Boost Software License, Version 1.0. (See accompanying
0005     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 ==============================================================================*/
0007 
0008 #ifndef BOOST_FUSION_CONTAINER_DEQUE_DETAIL_IS_SEQUENCE_IMPL_HPP
0009 #define BOOST_FUSION_CONTAINER_DEQUE_DETAIL_IS_SEQUENCE_IMPL_HPP
0010 
0011 #include <boost/fusion/support/config.hpp>
0012 #include <boost/mpl/bool.hpp>
0013 
0014 namespace boost { namespace fusion
0015 {
0016     struct deque_tag;
0017 
0018     namespace extension
0019     {
0020         template<typename T>
0021         struct is_sequence_impl;
0022 
0023         template<>
0024         struct is_sequence_impl<deque_tag>
0025         {
0026             template<typename Sequence>
0027             struct apply : mpl::true_ {};
0028         };
0029     }
0030 }}
0031 
0032 #endif