$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r68505 - in sandbox/assign_v2/boost/assign/v2/ref: . array array/functor
From: erwann.rogard_at_[hidden]
Date: 2011-01-27 18:41:21
Author: e_r
Date: 2011-01-27 18:41:18 EST (Thu, 27 Jan 2011)
New Revision: 68505
URL: http://svn.boost.org/trac/boost/changeset/68505
Log:
upd assign_v2
Added:
   sandbox/assign_v2/boost/assign/v2/ref/array/functor/converter.hpp   (contents, props changed)
   sandbox/assign_v2/boost/assign/v2/ref/array/size_type.hpp   (contents, props changed)
   sandbox/assign_v2/boost/assign/v2/ref/list.hpp   (contents, props changed)
Added: sandbox/assign_v2/boost/assign/v2/ref/array/functor/converter.hpp
==============================================================================
--- (empty file)
+++ sandbox/assign_v2/boost/assign/v2/ref/array/functor/converter.hpp	2011-01-27 18:41:18 EST (Thu, 27 Jan 2011)
@@ -0,0 +1,15 @@
+//////////////////////////////////////////////////////////////////////////////
+//  Boost.Assign v2                                                         //
+//                                                                          //
+//  Copyright (C) 2003-2004 Thorsten Ottosen                                //
+//  Copyright (C) 2010 Erwann Rogard                                        //
+//  Use, modification and distribution are subject to the                   //
+//  Boost Software License, Version 1.0. (See accompanying file             //
+//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)        //
+//////////////////////////////////////////////////////////////////////////////
+#ifndef BOOST_ASSIGN_V2_REF_ARRAY_FUNCTOR_CONVERTER_ER_2010_HPP
+#define BOOST_ASSIGN_V2_REF_ARRAY_FUNCTOR_CONVERTER_ER_2010_HPP
+
+#include <boost/assign/v2/ref/list/converter.hpp>
+
+#endif
Added: sandbox/assign_v2/boost/assign/v2/ref/array/size_type.hpp
==============================================================================
--- (empty file)
+++ sandbox/assign_v2/boost/assign/v2/ref/array/size_type.hpp	2011-01-27 18:41:18 EST (Thu, 27 Jan 2011)
@@ -0,0 +1,28 @@
+//////////////////////////////////////////////////////////////////////////////
+//  Boost.Assign v2                                                         //
+//                                                                          //
+//  Copyright (C) 2003-2004 Thorsten Ottosen                                //
+//  Copyright (C) 2010 Erwann Rogard                                        //
+//  Use, modification and distribution are subject to the                   //
+//  Boost Software License, Version 1.0. (See accompanying file             //
+//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)        //
+//////////////////////////////////////////////////////////////////////////////
+#ifndef BOOST_ASSIGN_V2_REF_ARRAY_SIZE_TYPE_ER_2010_HPP
+#define BOOST_ASSIGN_V2_REF_ARRAY_SIZE_TYPE_ER_2010_HPP
+#include <cstddef>
+
+namespace boost{
+namespace assign{
+namespace v2{
+namespace ref{
+namespace array_aux{
+
+	typedef std::size_t size_type;
+
+}// array_aux
+}// ref
+}// v2
+}// assign
+}// boost
+
+#endif BOOST_ASSIGN_V2_REF_ARRAY_SIZE_TYPE_ER_2010_HPP
Added: sandbox/assign_v2/boost/assign/v2/ref/list.hpp
==============================================================================
--- (empty file)
+++ sandbox/assign_v2/boost/assign/v2/ref/list.hpp	2011-01-27 18:41:18 EST (Thu, 27 Jan 2011)
@@ -0,0 +1,25 @@
+//////////////////////////////////////////////////////////////////////////////
+//  Boost.Assign v2                                                         //
+//                                                                          //
+//  Copyright (C) 2003-2004 Thorsten Ottosen                                //
+//  Copyright (C) 2010 Erwann Rogard                                        //
+//  Use, modification and distribution are subject to the                   //
+//  Boost Software License, Version 1.0. (See accompanying file             //
+//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)        //
+//////////////////////////////////////////////////////////////////////////////
+#ifndef BOOST_ASSIGN_V2_REF_LIST_ER_2010_HPP
+#define BOOST_ASSIGN_V2_REF_LIST_ER_2010_HPP
+
+#include <boost/assign/v2/ref/list/holder.hpp>
+#include <boost/assign/v2/ref/list/array.hpp>
+#include <boost/assign/v2/ref/list/policy.hpp>
+#include <boost/assign/v2/ref/list/at.hpp>
+#include <boost/assign/v2/ref/list/container.hpp>
+#include <boost/assign/v2/ref/list/nth_result_of.hpp>
+#include <boost/assign/v2/ref/list/size_type.hpp>
+#include <boost/assign/v2/ref/list/make.hpp>
+
+// Must remain commented out
+// #include <boost/assign/v2/ref/list/converter.hpp>
+
+#endif