Boost logo

Boost-Commit :

From: joel_at_[hidden]
Date: 2007-10-21 01:23:51


Author: djowel
Date: 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
New Revision: 40252
URL: http://svn.boost.org/trac/boost/changeset/40252

Log:
more flat includes
Added:
   branches/fusion/2_1/boost/fusion/include/fused.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/fused_function_object.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/fused_procedure.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/invoke_function_object.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/invoke_procedure.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/make_fused.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/make_fused_function_object.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/make_fused_procedure.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/make_unfused_generic.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/make_unfused_lvalue_args.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/make_unfused_rvalue_args.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/unfused_generic.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/unfused_lvalue_args.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/unfused_rvalue_args.hpp (contents, props changed)
   branches/fusion/2_1/boost/fusion/include/unfused_typed.hpp (contents, props changed)

Added: branches/fusion/2_1/boost/fusion/include/fused.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/fused.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_FUSED)
+#define FUSION_INCLUDE_FUSED
+
+#include <boost/fusion/functional/adapter/fused.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/fused_function_object.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/fused_function_object.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_FUSED_FUNCTION_OBJECT)
+#define FUSION_INCLUDE_FUSED_FUNCTION_OBJECT
+
+#include <boost/fusion/functional/adapter/fused_function_object.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/fused_procedure.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/fused_procedure.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_FUSED_PROCEDURE)
+#define FUSION_INCLUDE_FUSED_PROCEDURE
+
+#include <boost/fusion/functional/adapter/fused_procedure.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/invoke_function_object.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/invoke_function_object.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_INVOKE_FUNCTION_OBJECT)
+#define FUSION_INCLUDE_INVOKE_FUNCTION_OBJECT
+
+#include <boost/fusion/functional/invocation/invoke_function_object.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/invoke_procedure.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/invoke_procedure.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_INVOKE_PROCEDURE)
+#define FUSION_INCLUDE_INVOKE_PROCEDURE
+
+#include <boost/fusion/functional/invocation/invoke_procedure.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/make_fused.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/make_fused.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_MAKE_FUSED)
+#define FUSION_INCLUDE_MAKE_FUSED
+
+#include <boost/fusion/functional/generation/make_fused.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/make_fused_function_object.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/make_fused_function_object.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_MAKE_FUSED_FUNCTION_OBJECT)
+#define FUSION_INCLUDE_MAKE_FUSED_FUNCTION_OBJECT
+
+#include <boost/fusion/functional/generation/make_fused_function_object.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/make_fused_procedure.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/make_fused_procedure.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_MAKE_FUSED_PROCEDURE)
+#define FUSION_INCLUDE_MAKE_FUSED_PROCEDURE
+
+#include <boost/fusion/functional/generation/make_fused_procedure.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/make_unfused_generic.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/make_unfused_generic.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_MAKE_UNFUSED_GENERIC)
+#define FUSION_INCLUDE_MAKE_UNFUSED_GENERIC
+
+#include <boost/fusion/functional/generation/make_unfused_generic.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/make_unfused_lvalue_args.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/make_unfused_lvalue_args.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_MAKE_UNFUSED_LVALUE_ARGS)
+#define FUSION_INCLUDE_MAKE_UNFUSED_LVALUE_ARGS
+
+#include <boost/fusion/functional/generation/make_unfused_lvalue_args.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/make_unfused_rvalue_args.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/make_unfused_rvalue_args.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_MAKE_UNFUSED_RVALUE_ARGS)
+#define FUSION_INCLUDE_MAKE_UNFUSED_RVALUE_ARGS
+
+#include <boost/fusion/functional/generation/make_unfused_rvalue_args.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/unfused_generic.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/unfused_generic.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_UNFUSED_GENERIC)
+#define FUSION_INCLUDE_UNFUSED_GENERIC
+
+#include <boost/fusion/functional/adapter/unfused_generic.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/unfused_lvalue_args.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/unfused_lvalue_args.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_UNFUSED_LVALUE_ARGS)
+#define FUSION_INCLUDE_UNFUSED_LVALUE_ARGS
+
+#include <boost/fusion/functional/adapter/unfused_lvalue_args.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/unfused_rvalue_args.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/unfused_rvalue_args.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_UNFUSED_RVALUE_ARGS)
+#define FUSION_INCLUDE_UNFUSED_RVALUE_ARGS
+
+#include <boost/fusion/functional/adapter/unfused_rvalue_args.hpp>
+
+#endif

Added: branches/fusion/2_1/boost/fusion/include/unfused_typed.hpp
==============================================================================
--- (empty file)
+++ branches/fusion/2_1/boost/fusion/include/unfused_typed.hpp 2007-10-21 01:23:50 EDT (Sun, 21 Oct 2007)
@@ -0,0 +1,12 @@
+/*=============================================================================
+ Copyright (c) 2001-2007 Joel de Guzman
+
+ Distributed under 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)
+==============================================================================*/
+#if !defined(FUSION_INCLUDE_UNFUSED_TYPED)
+#define FUSION_INCLUDE_UNFUSED_TYPED
+
+#include <boost/fusion/functional/adapter/unfused_typed.hpp>
+
+#endif


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