os/ossrv/ossrv_pub/boost_apis/boost/mpl/back_inserter.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
sl@0
     2
#ifndef BOOST_MPL_BACK_INSERTER_HPP_INCLUDED
sl@0
     3
#define BOOST_MPL_BACK_INSERTER_HPP_INCLUDED
sl@0
     4
sl@0
     5
// Copyright Aleksey Gurtovoy 2003-2004
sl@0
     6
// Copyright David Abrahams 2003-2004
sl@0
     7
//
sl@0
     8
// Distributed under the Boost Software License, Version 1.0. 
sl@0
     9
// (See accompanying file LICENSE_1_0.txt or copy at 
sl@0
    10
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
    11
//
sl@0
    12
// See http://www.boost.org/libs/mpl for documentation.
sl@0
    13
sl@0
    14
// $Source: /cvsroot/boost/boost/boost/mpl/back_inserter.hpp,v $
sl@0
    15
// $Date: 2004/09/02 15:40:41 $
sl@0
    16
// $Revision: 1.2 $
sl@0
    17
sl@0
    18
#include <boost/mpl/push_back.hpp>
sl@0
    19
#include <boost/mpl/inserter.hpp>
sl@0
    20
sl@0
    21
namespace boost {
sl@0
    22
namespace mpl {
sl@0
    23
sl@0
    24
template<
sl@0
    25
      typename Sequence
sl@0
    26
    >
sl@0
    27
struct back_inserter
sl@0
    28
    : inserter< Sequence,push_back<> >
sl@0
    29
{
sl@0
    30
};
sl@0
    31
sl@0
    32
}}
sl@0
    33
sl@0
    34
#endif // BOOST_MPL_BACK_INSERTER_HPP_INCLUDED