Pack required boost code together.
[xy_vsfilter.git] / src / thirdparty / boost_1_47_0 / boost / mpl / vector / aux_ / push_front.hpp
blobbd6abe5a0a31483fb026f45f387c1b075fe4195d
2 #ifndef BOOST_MPL_VECTOR_AUX_PUSH_FRONT_HPP_INCLUDED
3 #define BOOST_MPL_VECTOR_AUX_PUSH_FRONT_HPP_INCLUDED
5 // Copyright Aleksey Gurtovoy 2000-2004
6 //
7 // Distributed under the Boost Software License, Version 1.0.
8 // (See accompanying file LICENSE_1_0.txt or copy at
9 // http://www.boost.org/LICENSE_1_0.txt)
11 // See http://www.boost.org/libs/mpl for documentation.
13 // $Id: push_front.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
14 // $Date: 2008-10-11 02:19:02 -0400 (Sat, 11 Oct 2008) $
15 // $Revision: 49267 $
17 #include <boost/mpl/push_front_fwd.hpp>
18 #include <boost/mpl/aux_/config/typeof.hpp>
20 #if defined(BOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES)
22 # include <boost/mpl/vector/aux_/item.hpp>
23 # include <boost/mpl/vector/aux_/tag.hpp>
25 namespace boost { namespace mpl {
27 template<>
28 struct push_front_impl< aux::vector_tag >
30 template< typename Vector, typename T > struct apply
32 typedef v_item<T,Vector,1> type;
38 #endif // BOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES
40 #endif // BOOST_MPL_VECTOR_AUX_PUSH_FRONT_HPP_INCLUDED