Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r69802 - sandbox/assign_v2/boost/assign/v2/ref/list_tuple
From: erwann.rogard_at_[hidden]
Date: 2011-03-09 16:38:17


Author: e_r
Date: 2011-03-09 16:38:16 EST (Wed, 09 Mar 2011)
New Revision: 69802
URL: http://svn.boost.org/trac/boost/changeset/69802

Log:
upd assign_v2
Added:
   sandbox/assign_v2/boost/assign/v2/ref/list_tuple/list_tuple.hpp (contents, props changed)
Removed:
   sandbox/assign_v2/boost/assign/v2/ref/list_tuple/keyword.hpp
   sandbox/assign_v2/boost/assign/v2/ref/list_tuple/size_type.hpp

Deleted: sandbox/assign_v2/boost/assign/v2/ref/list_tuple/keyword.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/ref/list_tuple/keyword.hpp 2011-03-09 16:38:16 EST (Wed, 09 Mar 2011)
+++ (empty file)
@@ -1 +0,0 @@
-// TODO remove file
\ No newline at end of file

Added: sandbox/assign_v2/boost/assign/v2/ref/list_tuple/list_tuple.hpp
==============================================================================
--- (empty file)
+++ sandbox/assign_v2/boost/assign/v2/ref/list_tuple/list_tuple.hpp 2011-03-09 16:38:16 EST (Wed, 09 Mar 2011)
@@ -0,0 +1,68 @@
+//////////////////////////////////////////////////////////////////////////////
+// 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_TUPLE_LIST_TUPLE_ER_2010_HPP
+#define BOOST_ASSIGN_V2_REF_LIST_TUPLE_LIST_TUPLE_ER_2010_HPP
+
+namespace boost{
+namespace assign{
+namespace v2{
+namespace ref{
+namespace list_tuple_aux{
+
+ typedef int list_size_type;
+ typedef int tuple_size_type;
+
+ struct root{};
+
+ template<typename T>
+ struct link
+ {
+
+ link(T const& t) : unlink( t ){}
+
+ T const& unlink;
+ };
+
+}// list_tuple_aux
+}// ref
+}// v2
+}// assign
+}// boost
+
+#include <boost/assign/v2/ref/list_tuple/extraction.hpp>
+#include <boost/assign/v2/detail/config/enable_cpp0x.hpp>
+#if BOOST_ASSIGN_V2_ENABLE_CPP0X
+#include <boost/assign/v2/ref/list_tuple/cpp0x/container.hpp>
+#else
+#include <boost/assign/v2/ref/list_tuple/cpp03/container.hpp>
+#endif // BOOST_ASSIGN_V2_ENABLE_CPP0X
+
+namespace boost{
+namespace assign{
+namespace v2{
+namespace ref{
+namespace result_of{
+
+ typedef list_tuple_aux::container<0, list_tuple_aux::root> list_tuple;
+
+}// result_of
+namespace
+{
+
+ result_of::list_tuple const
+ list_tuple = result_of::list_tuple();
+
+}
+}// ref
+}// v2
+}// assign
+}// boost
+
+#endif // BOOST_ASSIGN_V2_REF_LIST_TUPLE_LIST_TUPLE_ER_2010_HPP

Deleted: sandbox/assign_v2/boost/assign/v2/ref/list_tuple/size_type.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/ref/list_tuple/size_type.hpp 2011-03-09 16:38:16 EST (Wed, 09 Mar 2011)
+++ (empty file)
@@ -1 +0,0 @@
-// TODO remove file
\ No newline at end of file


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk