Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r70358 - in sandbox/assign_v2/boost/assign/v2: . deque framework interpreter optional optional/standard put utility/chain
From: erwann.rogard_at_[hidden]
Date: 2011-03-21 17:26:58


Author: e_r
Date: 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
New Revision: 70358
URL: http://svn.boost.org/trac/boost/changeset/70358

Log:
upd assign_v2
Text files modified:
   sandbox/assign_v2/boost/assign/v2/deque/deque.hpp | 12 ++++++------
   sandbox/assign_v2/boost/assign/v2/framework.hpp | 12 ++++++------
   sandbox/assign_v2/boost/assign/v2/framework/crtp.hpp | 26 +++++++++++++-------------
   sandbox/assign_v2/boost/assign/v2/framework/fwd.hpp | 2 +-
   sandbox/assign_v2/boost/assign/v2/interpreter.hpp | 12 ++++++------
   sandbox/assign_v2/boost/assign/v2/interpreter/as_arg_list.hpp | 6 +++---
   sandbox/assign_v2/boost/assign/v2/interpreter/crtp.hpp | 26 +++++++++++++-------------
   sandbox/assign_v2/boost/assign/v2/interpreter/fun.hpp | 6 +++---
   sandbox/assign_v2/boost/assign/v2/interpreter/fwd.hpp | 8 ++++----
   sandbox/assign_v2/boost/assign/v2/interpreter/modifier.hpp | 6 +++---
   sandbox/assign_v2/boost/assign/v2/interpreter/replace_parameter.hpp | 6 +++---
   sandbox/assign_v2/boost/assign/v2/optional/fun.hpp | 6 +++---
   sandbox/assign_v2/boost/assign/v2/optional/iterate.hpp | 4 ++--
   sandbox/assign_v2/boost/assign/v2/optional/lookup.hpp | 4 ++--
   sandbox/assign_v2/boost/assign/v2/optional/modifier.hpp | 10 +++++-----
   sandbox/assign_v2/boost/assign/v2/optional/repeat.hpp | 4 ++--
   sandbox/assign_v2/boost/assign/v2/optional/standard/modifier.hpp | 4 ++--
   sandbox/assign_v2/boost/assign/v2/put/put.hpp | 12 ++++++------
   sandbox/assign_v2/boost/assign/v2/utility/chain/chain.hpp | 8 ++++----
   19 files changed, 87 insertions(+), 87 deletions(-)

Modified: sandbox/assign_v2/boost/assign/v2/deque/deque.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/deque/deque.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/deque/deque.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -10,10 +10,10 @@
 #ifndef BOOST_ASSIGN_V2_DEQUE_DEQUE_ER_2010_HPP
 #define BOOST_ASSIGN_V2_DEQUE_DEQUE_ER_2010_HPP
 #include <deque>
-#include <boost/assign/v2/framework/adapter_crtp.hpp>
-#include <boost/assign/v2/framework/fun.hpp>
-#include <boost/assign/v2/framework/modifier.hpp>
-#include <boost/assign/v2/framework/replace_parameter.hpp>
+#include <boost/assign/v2/interpreter/interpreter_crtp.hpp>
+#include <boost/assign/v2/interpreter/fun.hpp>
+#include <boost/assign/v2/interpreter/modifier.hpp>
+#include <boost/assign/v2/interpreter/replace_parameter.hpp>
 #include <boost/assign/v2/deque/fwd.hpp>
 #include <boost/assign/v2/detail/config/enable_cpp0x.hpp>
 #include <boost/assign/v2/detail/keyword/nil.hpp>
@@ -40,7 +40,7 @@
     template<typename T, typename F, typename Tag>
     class deque_adapter
 //<-
- : public adapter_crtp<
+ : public interpreter_crtp<
             typename deque_impl<T>::type, F, Tag,
             deque_adapter<T, F, Tag>
>
@@ -49,7 +49,7 @@
 //<-
         typedef typename deque_impl<T>::type impl_;
         typedef impl_ const cimpl_;
- typedef adapter_crtp<impl_, F, Tag, deque_adapter> put_crtp_;
+ typedef interpreter_crtp<impl_, F, Tag, deque_adapter> put_crtp_;
 
         typedef aux::adapter_modifier<Tag> modifier_;
 //->

Modified: sandbox/assign_v2/boost/assign/v2/framework.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/framework.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/framework.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -7,10 +7,10 @@
 // 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_FRAMEWORK_ER_2010_HPP
-#define BOOST_ASSIGN_V2_FRAMEWORK_ER_2010_HPP
-#include <boost/assign/v2/framework/adapter_crtp.hpp>
-#include <boost/assign/v2/framework/modifier.hpp>
-#include <boost/assign/v2/framework/replace_parameter.hpp>
+#ifndef BOOST_ASSIGN_V2_INTERPRETER_ER_2010_HPP
+#define BOOST_ASSIGN_V2_INTERPRETER_ER_2010_HPP
+#include <boost/assign/v2/interpreter/crtp>
+#include <boost/assign/v2/interpreter/modifier.hpp>
+#include <boost/assign/v2/interpreter/replace_parameter.hpp>
 
-#endif // BOOST_ASSIGN_V2_FRAMEWORK_ER_2010_HPP
+#endif // BOOST_ASSIGN_V2_INTERPRETER_ER_2010_HPP

Modified: sandbox/assign_v2/boost/assign/v2/framework/crtp.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/framework/crtp.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/framework/crtp.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -7,15 +7,15 @@
 // 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_FRAMEWORK_ADAPTER_CRTP_ER_2010_HPP
-#define BOOST_ASSIGN_V2_FRAMEWORK_ADAPTER_CRTP_ER_2010_HPP
+#ifndef BOOST_ASSIGN_V2_INTERPRETER_ADAPTER_CRTP_ER_2010_HPP
+#define BOOST_ASSIGN_V2_INTERPRETER_ADAPTER_CRTP_ER_2010_HPP
 #include <boost/assign/v2/detail/config/enable_cpp0x.hpp>
 #include <boost/assign/v2/detail/pp/forward.hpp>
 #include <boost/assign/v2/detail/pp/ignore.hpp>
 #include <boost/assign/v2/detail/traits/ptr_container/meta.hpp>
-#include <boost/assign/v2/framework/as_arg_list.hpp>
-#include <boost/assign/v2/framework/fwd.hpp>
-#include <boost/assign/v2/framework/modifier.hpp>
+#include <boost/assign/v2/interpreter/as_arg_list.hpp>
+#include <boost/assign/v2/interpreter/fwd.hpp>
+#include <boost/assign/v2/interpreter/modifier.hpp>
 #include <boost/concept_check.hpp>
 #include <boost/mpl/always.hpp>
 #include <boost/mpl/apply.hpp>
@@ -99,7 +99,7 @@
 
     };
 }//aux
-//[syntax_put_adapter_crtp
+//[syntax_put_interpreter_crtp
 namespace aux{
 
     template<typename C, typename D>
@@ -134,13 +134,13 @@
     };
 
     template<typename /*<<Container>>*/C, typename /*<<Functor>>*/F, typename /*<<Modifier tag>>*/Tag, typename /*<<Derived type>>*/D>
- class adapter_crtp
+ class interpreter_crtp
 //<-
         : public fun_holder<F>
         , public modifier_holder<Tag>
 #if !BOOST_ASSIGN_V2_ENABLE_CPP0X
         , public functor_aux::crtp_unary_and_up<
- adapter_crtp<C, F, Tag, D>,
+ interpreter_crtp<C, F, Tag, D>,
             ::boost::mpl::always< D const& >
>
 #endif // BOOST_ASSIGN_V2_ENABLE_CPP0X
@@ -162,9 +162,9 @@
         typedef /*<-*/ typename modifier_holder_::modifier_type BOOST_ASSIGN_V2_IGNORE(/*->*/ adapter_modifier<Tag> /*<-*/)/*->*/
         modifier_type;
 
- adapter_crtp(){}
- explicit adapter_crtp( F const& f )/*<-*/ : fun_holder_( f ){}BOOST_ASSIGN_V2_IGNORE(/*->*/;/*<-*/)/*->*/
- explicit adapter_crtp( F const& f, modifier_type const& m )/*<-*/
+ interpreter_crtp(){}
+ explicit interpreter_crtp( F const& f )/*<-*/ : fun_holder_( f ){}BOOST_ASSIGN_V2_IGNORE(/*->*/;/*<-*/)/*->*/
+ explicit interpreter_crtp( F const& f, modifier_type const& m )/*<-*/
             : fun_holder_( f ), modifier_holder_( m ){}BOOST_ASSIGN_V2_IGNORE(/*->*/;/*<-*/)/*->*/
 
         typedef D const& result_type;
@@ -192,7 +192,7 @@
 #else
         protected:
         typedef functor_aux::crtp_unary_and_up<
- adapter_crtp,
+ interpreter_crtp,
             ::boost::mpl::always<result_type>
> super_t;
 
@@ -294,4 +294,4 @@
 }// assign
 }// boost
 
-#endif // BOOST_ASSIGN_V2_FRAMEWORK_ADAPTER_CRTP_ER_2010_HPP
+#endif // BOOST_ASSIGN_V2_INTERPRETER_ADAPTER_CRTP_ER_2010_HPP

Modified: sandbox/assign_v2/boost/assign/v2/framework/fwd.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/framework/fwd.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/framework/fwd.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -16,7 +16,7 @@
 namespace aux{
 
     template<typename C, typename F, typename Tag, typename D>
- class adapter_crtp;
+ class interpreter_crtp;
 
     template<typename Tag> struct /*<<Specialize on Tag>>*/ adapter_modifier;
 

Modified: sandbox/assign_v2/boost/assign/v2/interpreter.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/interpreter.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/interpreter.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -7,10 +7,10 @@
 // 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_FRAMEWORK_ER_2010_HPP
-#define BOOST_ASSIGN_V2_FRAMEWORK_ER_2010_HPP
-#include <boost/assign/v2/framework/adapter_crtp.hpp>
-#include <boost/assign/v2/framework/modifier.hpp>
-#include <boost/assign/v2/framework/replace_parameter.hpp>
+#ifndef BOOST_ASSIGN_V2_INTERPRETER_ER_2010_HPP
+#define BOOST_ASSIGN_V2_INTERPRETER_ER_2010_HPP
+#include <boost/assign/v2/interpreter/crtp.hpp>
+#include <boost/assign/v2/interpreter/modifier.hpp>
+#include <boost/assign/v2/interpreter/replace_parameter.hpp>
 
-#endif // BOOST_ASSIGN_V2_FRAMEWORK_ER_2010_HPP
+#endif // BOOST_ASSIGN_V2_INTERPRETER_ER_2010_HPP

Modified: sandbox/assign_v2/boost/assign/v2/interpreter/as_arg_list.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/interpreter/as_arg_list.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/interpreter/as_arg_list.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -7,8 +7,8 @@
 // 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_FRAMEWORK_AS_ARG_LIST_ER_2010_HPP
-#define BOOST_ASSIGN_V2_FRAMEWORK_AS_ARG_LIST_ER_2010_HPP
+#ifndef BOOST_ASSIGN_V2_INTERPRETER_AS_ARG_LIST_ER_2010_HPP
+#define BOOST_ASSIGN_V2_INTERPRETER_AS_ARG_LIST_ER_2010_HPP
 #include <boost/assign/v2/detail/pp/ignore.hpp>
 #include <boost/range/iterator.hpp>
 #include <boost/range/iterator_range.hpp>
@@ -83,4 +83,4 @@
 }// assign
 }// boost
 
-#endif // BOOST_ASSIGN_V2_FRAMEWORK_AS_ARG_LIST_ER_2010_HPP
+#endif // BOOST_ASSIGN_V2_INTERPRETER_AS_ARG_LIST_ER_2010_HPP

Modified: sandbox/assign_v2/boost/assign/v2/interpreter/crtp.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/interpreter/crtp.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/interpreter/crtp.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -7,15 +7,15 @@
 // 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_FRAMEWORK_ADAPTER_CRTP_ER_2010_HPP
-#define BOOST_ASSIGN_V2_FRAMEWORK_ADAPTER_CRTP_ER_2010_HPP
+#ifndef BOOST_ASSIGN_V2_INTERPRETER_ADAPTER_CRTP_ER_2010_HPP
+#define BOOST_ASSIGN_V2_INTERPRETER_ADAPTER_CRTP_ER_2010_HPP
 #include <boost/assign/v2/detail/config/enable_cpp0x.hpp>
 #include <boost/assign/v2/detail/pp/forward.hpp>
 #include <boost/assign/v2/detail/pp/ignore.hpp>
 #include <boost/assign/v2/detail/traits/ptr_container/meta.hpp>
-#include <boost/assign/v2/framework/as_arg_list.hpp>
-#include <boost/assign/v2/framework/fwd.hpp>
-#include <boost/assign/v2/framework/modifier.hpp>
+#include <boost/assign/v2/interpreter/as_arg_list.hpp>
+#include <boost/assign/v2/interpreter/fwd.hpp>
+#include <boost/assign/v2/interpreter/modifier.hpp>
 #include <boost/concept_check.hpp>
 #include <boost/mpl/always.hpp>
 #include <boost/mpl/apply.hpp>
@@ -99,7 +99,7 @@
 
     };
 }//aux
-//[syntax_put_adapter_crtp
+//[syntax_put_interpreter_crtp
 namespace aux{
 
     template<typename C, typename D>
@@ -134,13 +134,13 @@
     };
 
     template<typename /*<<Container>>*/C, typename /*<<Functor>>*/F, typename /*<<Modifier tag>>*/Tag, typename /*<<Derived type>>*/D>
- class adapter_crtp
+ class interpreter_crtp
 //<-
         : public fun_holder<F>
         , public modifier_holder<Tag>
 #if !BOOST_ASSIGN_V2_ENABLE_CPP0X
         , public functor_aux::crtp_unary_and_up<
- adapter_crtp<C, F, Tag, D>,
+ interpreter_crtp<C, F, Tag, D>,
             ::boost::mpl::always< D const& >
>
 #endif // BOOST_ASSIGN_V2_ENABLE_CPP0X
@@ -162,9 +162,9 @@
         typedef /*<-*/ typename modifier_holder_::modifier_type BOOST_ASSIGN_V2_IGNORE(/*->*/ adapter_modifier<Tag> /*<-*/)/*->*/
         modifier_type;
 
- adapter_crtp(){}
- explicit adapter_crtp( F const& f )/*<-*/ : fun_holder_( f ){}BOOST_ASSIGN_V2_IGNORE(/*->*/;/*<-*/)/*->*/
- explicit adapter_crtp( F const& f, modifier_type const& m )/*<-*/
+ interpreter_crtp(){}
+ explicit interpreter_crtp( F const& f )/*<-*/ : fun_holder_( f ){}BOOST_ASSIGN_V2_IGNORE(/*->*/;/*<-*/)/*->*/
+ explicit interpreter_crtp( F const& f, modifier_type const& m )/*<-*/
             : fun_holder_( f ), modifier_holder_( m ){}BOOST_ASSIGN_V2_IGNORE(/*->*/;/*<-*/)/*->*/
 
         typedef D const& result_type;
@@ -192,7 +192,7 @@
 #else
         protected:
         typedef functor_aux::crtp_unary_and_up<
- adapter_crtp,
+ interpreter_crtp,
             ::boost::mpl::always<result_type>
> super_t;
 
@@ -294,4 +294,4 @@
 }// assign
 }// boost
 
-#endif // BOOST_ASSIGN_V2_FRAMEWORK_ADAPTER_CRTP_ER_2010_HPP
+#endif // BOOST_ASSIGN_V2_INTERPRETER_ADAPTER_CRTP_ER_2010_HPP

Modified: sandbox/assign_v2/boost/assign/v2/interpreter/fun.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/interpreter/fun.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/interpreter/fun.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -7,8 +7,8 @@
 // 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_FRAMEWORK_FUN_ER_2010_HPP
-#define BOOST_ASSIGN_V2_FRAMEWORK_FUN_ER_2010_HPP
+#ifndef BOOST_ASSIGN_V2_INTERPRETER_FUN_ER_2010_HPP
+#define BOOST_ASSIGN_V2_INTERPRETER_FUN_ER_2010_HPP
 #include <boost/assign/v2/detail/traits/ptr_container/to_value_container.hpp>
 #include <boost/assign/v2/detail/traits/ptr_container/meta.hpp>
 #include <boost/assign/v2/detail/functor/constructor.hpp>
@@ -59,4 +59,4 @@
 }// assign
 }// boost
 
-#endif // BOOST_ASSIGN_V2_FRAMEWORK_FUN_ER_2010_HPP
+#endif // BOOST_ASSIGN_V2_INTERPRETER_FUN_ER_2010_HPP

Modified: sandbox/assign_v2/boost/assign/v2/interpreter/fwd.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/interpreter/fwd.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/interpreter/fwd.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -7,8 +7,8 @@
 // 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_FRAMEWORK_FWD_ER_2010_HPP
-#define BOOST_ASSIGN_V2_FRAMEWORK_FWD_ER_2010_HPP
+#ifndef BOOST_ASSIGN_V2_INTERPRETER_FWD_ER_2010_HPP
+#define BOOST_ASSIGN_V2_INTERPRETER_FWD_ER_2010_HPP
 
 namespace boost{
 namespace assign{
@@ -16,7 +16,7 @@
 namespace aux{
 
     template<typename C, typename F, typename Tag, typename D>
- class adapter_crtp;
+ class interpreter_crtp;
 
     template<typename Tag> struct /*<<Specialize on Tag>>*/ adapter_modifier;
 
@@ -25,5 +25,5 @@
 }// assign
 }// boost
 
-#endif // BOOST_ASSIGN_V2_FRAMEWORK_FWD_ER_2010_HPP
+#endif // BOOST_ASSIGN_V2_INTERPRETER_FWD_ER_2010_HPP
 

Modified: sandbox/assign_v2/boost/assign/v2/interpreter/modifier.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/interpreter/modifier.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/interpreter/modifier.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -7,8 +7,8 @@
 // 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_FRAMEWORK_MODIFIER_ER_2010_HPP
-#define BOOST_ASSIGN_V2_FRAMEWORK_MODIFIER_ER_2010_HPP
+#ifndef BOOST_ASSIGN_V2_INTERPRETER_MODIFIER_ER_2010_HPP
+#define BOOST_ASSIGN_V2_INTERPRETER_MODIFIER_ER_2010_HPP
 #include <boost/assign/v2/detail/pp/ignore.hpp>
 #include <boost/assign/v2/detail/traits/value_container/has_push.hpp>
 #include <boost/assign/v2/detail/traits/value_container/category.hpp>
@@ -145,4 +145,4 @@
 }// assign
 }// boost
 
-#endif // BOOST_ASSIGN_V2_FRAMEWORK_MODIFIER_ER_2010_HPP
+#endif // BOOST_ASSIGN_V2_INTERPRETER_MODIFIER_ER_2010_HPP

Modified: sandbox/assign_v2/boost/assign/v2/interpreter/replace_parameter.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/interpreter/replace_parameter.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/interpreter/replace_parameter.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -7,8 +7,8 @@
 // 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_FRAMEWORK_REPLACE_PARAMETER_ER_2010_HPP
-#define BOOST_ASSIGN_V2_FRAMEWORK_REPLACE_PARAMETER_ER_2010_HPP
+#ifndef BOOST_ASSIGN_V2_INTERPRETER_REPLACE_PARAMETER_ER_2010_HPP
+#define BOOST_ASSIGN_V2_INTERPRETER_REPLACE_PARAMETER_ER_2010_HPP
 #include <boost/assign/v2/detail/pp/ignore.hpp>
 #include <boost/mpl/apply.hpp>
 
@@ -36,4 +36,4 @@
 }// assign
 }// boost
     
-#endif // BOOST_ASSIGN_V2_FRAMEWORK_REPLACE_PARAMETER_ER_2010_HPP
+#endif // BOOST_ASSIGN_V2_INTERPRETER_REPLACE_PARAMETER_ER_2010_HPP

Modified: sandbox/assign_v2/boost/assign/v2/optional/fun.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/optional/fun.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/optional/fun.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -11,8 +11,8 @@
 #define BOOST_ASSIGN_V2_OPTIONAL_FUN_ER_2010_HPP
 #include <boost/assign/v2/detail/pp/ignore.hpp>
 #include <boost/assign/v2/detail/keyword/ignore.hpp>
-#include <boost/assign/v2/framework/fwd.hpp>
-#include <boost/assign/v2/framework/replace_parameter.hpp>
+#include <boost/assign/v2/interpreter/fwd.hpp>
+#include <boost/assign/v2/interpreter/replace_parameter.hpp>
 #include <boost/mpl/apply.hpp>
 
 namespace boost{
@@ -48,7 +48,7 @@
     template<typename C, typename F, typename Tag, typename D, typename F1>
     typename ::boost::mpl::apply1<result_of::optional_fun<D>, F1>::type
     operator%(
- adapter_crtp<C, F, Tag, D> const& lhs,
+ interpreter_crtp<C, F, Tag, D> const& lhs,
         optional_fun<F1> const& rhs
     )
     {

Modified: sandbox/assign_v2/boost/assign/v2/optional/iterate.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/optional/iterate.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/optional/iterate.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -13,8 +13,8 @@
 #include <boost/assign/v2/detail/keyword/ignore.hpp>
 #include <boost/assign/v2/detail/config/enable_cpp0x.hpp>
 #include <boost/assign/v2/detail/pp/ignore.hpp>
-//#include <boost/assign/v2/framework/modifier.hpp>
-#include <boost/assign/v2/framework/fwd.hpp>
+//#include <boost/assign/v2/interpreter/modifier.hpp>
+#include <boost/assign/v2/interpreter/fwd.hpp>
 #include <boost/call_traits.hpp>
 #include <boost/shared_ptr.hpp>
 #if BOOST_ASSIGN_V2_ENABLE_CPP0X

Modified: sandbox/assign_v2/boost/assign/v2/optional/lookup.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/optional/lookup.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/optional/lookup.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -11,8 +11,8 @@
 #define BOOST_ASSIGN_V2_OPTIONAL_LOOKUP_ER_2010_HPP
 #include <boost/assign/v2/detail/keyword/ignore.hpp>
 #include <boost/assign/v2/detail/pp/ignore.hpp>
-//#include <boost/assign/v2/framework/modifier.hpp>
-#include <boost/assign/v2/framework/fwd.hpp>
+//#include <boost/assign/v2/interpreter/modifier.hpp>
+#include <boost/assign/v2/interpreter/fwd.hpp>
 #include <boost/call_traits.hpp>
 #include <boost/shared_ptr.hpp>
 

Modified: sandbox/assign_v2/boost/assign/v2/optional/modifier.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/optional/modifier.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/optional/modifier.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -11,9 +11,9 @@
 #define BOOST_ASSIGN_V2_OPTIONAL_MODIFIER_ER_2010_HPP
 #include <boost/assign/v2/detail/keyword/ignore.hpp>
 #include <boost/assign/v2/detail/pp/ignore.hpp>
-#include <boost/assign/v2/framework/fwd.hpp>
-#include <boost/assign/v2/framework/modifier.hpp>
-#include <boost/assign/v2/framework/replace_parameter.hpp>
+#include <boost/assign/v2/interpreter/fwd.hpp>
+#include <boost/assign/v2/interpreter/modifier.hpp>
+#include <boost/assign/v2/interpreter/replace_parameter.hpp>
 #include <boost/mpl/apply.hpp>
 #include <boost/preprocessor/cat.hpp>
 
@@ -52,7 +52,7 @@
     template<typename Keyword, typename Arg>
     struct /*<<Meta-function class to be specialized on Keyword>>*/ meta_modifier_tag
     {
- template<typename /*<<Inherits `adapter_crtp<>` >>*/ D>
+ template<typename /*<<Inherits `interpreter_crtp<>` >>*/ D>
         struct /*<<Returns a modifier-tag>>*/ apply;
     };
 
@@ -89,7 +89,7 @@
         Keyword, Arg
>::type
     operator%(
- adapter_crtp<C, F, Tag, D> const& lhs,
+ interpreter_crtp<C, F, Tag, D> const& lhs,
         optional_modifier<Keyword, Arg> const& rhs
     )/*<-*/
     {

Modified: sandbox/assign_v2/boost/assign/v2/optional/repeat.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/optional/repeat.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/optional/repeat.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -17,8 +17,8 @@
 #include <boost/utility/enable_if.hpp>
 #include <boost/type_traits/is_reference.hpp>
 #endif
-//#include <boost/assign/v2/framework/modifier.hpp>
-#include <boost/assign/v2/framework/fwd.hpp>
+//#include <boost/assign/v2/interpreter/modifier.hpp>
+#include <boost/assign/v2/interpreter/fwd.hpp>
 
 namespace boost{
 namespace assign{

Modified: sandbox/assign_v2/boost/assign/v2/optional/standard/modifier.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/optional/standard/modifier.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/optional/standard/modifier.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -10,8 +10,8 @@
 #ifndef BOOST_ASSIGN_V2_OPTIONAL_STANDARD_MODIFIER_ER_2010_HPP
 #define BOOST_ASSIGN_V2_OPTIONAL_STANDARD_MODIFIER_ER_2010_HPP
 #include <boost/assign/v2/detail/keyword/ignore.hpp>
-//#include <boost/assign/v2/framework/modifier.hpp>
-#include <boost/assign/v2/framework/fwd.hpp>
+//#include <boost/assign/v2/interpreter/modifier.hpp>
+#include <boost/assign/v2/interpreter/fwd.hpp>
 #include <boost/assign/v2/optional/modifier.hpp>
 #include <boost/preprocessor/cat.hpp>
 

Modified: sandbox/assign_v2/boost/assign/v2/put/put.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/put/put.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/put/put.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -9,10 +9,10 @@
 //////////////////////////////////////////////////////////////////////////////
 #ifndef BOOST_ASSIGN_V2_PUT_PUT_ER_2010_HPP
 #define BOOST_ASSIGN_V2_PUT_PUT_ER_2010_HPP
-#include <boost/assign/v2/framework/adapter_crtp.hpp>
-#include <boost/assign/v2/framework/fun.hpp>
-#include <boost/assign/v2/framework/modifier.hpp>
-#include <boost/assign/v2/framework/replace_parameter.hpp>
+#include <boost/assign/v2/interpreter/interpreter_crtp.hpp>
+#include <boost/assign/v2/interpreter/fun.hpp>
+#include <boost/assign/v2/interpreter/modifier.hpp>
+#include <boost/assign/v2/interpreter/replace_parameter.hpp>
 #include <boost/assign/v2/detail/pp/ignore.hpp>
 #include <boost/assign/v2/ref/wrapper/copy.hpp>
 
@@ -26,11 +26,11 @@
     class container_adapter
 //<-
         : protected ref::wrapper< ref::assign_tag::copy, C >
- , public aux::adapter_crtp< C, F, Tag, container_adapter<C, F, Tag> >
+ , public aux::interpreter_crtp< C, F, Tag, container_adapter<C, F, Tag> >
 //->
     {
 //<-
- typedef aux::adapter_crtp< C, F, Tag, container_adapter > super2_t;
+ typedef aux::interpreter_crtp< C, F, Tag, container_adapter > super2_t;
 //->
         public:
 

Modified: sandbox/assign_v2/boost/assign/v2/utility/chain/chain.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/utility/chain/chain.hpp (original)
+++ sandbox/assign_v2/boost/assign/v2/utility/chain/chain.hpp 2011-03-21 17:26:55 EDT (Mon, 21 Mar 2011)
@@ -74,7 +74,7 @@
 }// result_of
 namespace chain_aux{
 
-#define BOOST_ASSIGN_V2_FRAMEWORK_CHAIN(U1) \
+#define BOOST_ASSIGN_V2_INTERPRETER_CHAIN(U1) \
     template<typename R1, typename U2> \
     typename chain_aux::result<U1, U2>::type \
     operator|(U1 & r1, chain_aux::adaptor1<U2> const & h) \
@@ -85,9 +85,9 @@
 \
 /**/
 
-BOOST_ASSIGN_V2_FRAMEWORK_CHAIN(R1 )
-BOOST_ASSIGN_V2_FRAMEWORK_CHAIN(R1 const)
-#undef BOOST_ASSIGN_V2_FRAMEWORK_CHAIN
+BOOST_ASSIGN_V2_INTERPRETER_CHAIN(R1 )
+BOOST_ASSIGN_V2_INTERPRETER_CHAIN(R1 const)
+#undef BOOST_ASSIGN_V2_INTERPRETER_CHAIN
 
 }// chain_aux
 


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