summaryrefslogtreecommitdiff
path: root/src/third_party/boost-1.56.0/boost/fusion/include
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-08-15 17:06:16 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-08-15 17:20:20 -0400
commit0d1d5016b57c59817fa0619e5cf4c6df046b28c3 (patch)
treeeae9fc8b180f49dd5e3834f7238c9c9cad93cfd9 /src/third_party/boost-1.56.0/boost/fusion/include
parent492d97468b1121228f208489a645759b390f023e (diff)
downloadmongo-0d1d5016b57c59817fa0619e5cf4c6df046b28c3.tar.gz
SERVER-8994: Boost 1.56.0
Initial import of source Libraries: algorithm array asio bind chrono config container date_time filesystem function integer intrusive noncopyable optional program_options random smart_ptr static_assert thread unordered utility
Diffstat (limited to 'src/third_party/boost-1.56.0/boost/fusion/include')
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/any.hpp13
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/begin.hpp13
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/cons.hpp13
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/end.hpp13
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/equal_to.hpp14
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/filter_view.hpp13
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/find_if.hpp13
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/for_each.hpp13
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/mpl.hpp14
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/next.hpp13
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/std_pair.hpp13
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/tuple.hpp13
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/include/value_of.hpp13
13 files changed, 171 insertions, 0 deletions
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/any.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/any.hpp
new file mode 100644
index 00000000000..c76d6b69058
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/any.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_ANY)
+#define FUSION_INCLUDE_ANY
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/algorithm/query/any.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/begin.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/begin.hpp
new file mode 100644
index 00000000000..88a449f20fc
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/begin.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_BEGIN)
+#define FUSION_INCLUDE_BEGIN
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/sequence/intrinsic/begin.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/cons.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/cons.hpp
new file mode 100644
index 00000000000..498e9407ee6
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/cons.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_CONS)
+#define FUSION_INCLUDE_CONS
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/container/list/cons.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/end.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/end.hpp
new file mode 100644
index 00000000000..255d05f0d57
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/end.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_END)
+#define FUSION_INCLUDE_END
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/sequence/intrinsic/end.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/equal_to.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/equal_to.hpp
new file mode 100644
index 00000000000..24499a90697
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/equal_to.hpp
@@ -0,0 +1,14 @@
+/*=============================================================================
+ 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_EQUAL_TO)
+#define FUSION_INCLUDE_EQUAL_TO
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/iterator/equal_to.hpp>
+#include <boost/fusion/sequence/comparison/equal_to.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/filter_view.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/filter_view.hpp
new file mode 100644
index 00000000000..6ba64fe16d2
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/filter_view.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_FILTER_VIEW)
+#define FUSION_INCLUDE_FILTER_VIEW
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/view/filter_view.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/find_if.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/find_if.hpp
new file mode 100644
index 00000000000..a864d801df6
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/find_if.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_FIND_IF)
+#define FUSION_INCLUDE_FIND_IF
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/algorithm/query/find_if.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/for_each.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/for_each.hpp
new file mode 100644
index 00000000000..b4a96ae0eac
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/for_each.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_FOR_EACH)
+#define FUSION_INCLUDE_FOR_EACH
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/algorithm/iteration/for_each.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/mpl.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/mpl.hpp
new file mode 100644
index 00000000000..cf7fff2f594
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/mpl.hpp
@@ -0,0 +1,14 @@
+/*=============================================================================
+ 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_MPL)
+#define FUSION_INCLUDE_MPL
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/adapted/mpl.hpp>
+#include <boost/fusion/mpl.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/next.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/next.hpp
new file mode 100644
index 00000000000..266b6ecb36a
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/next.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_NEXT)
+#define FUSION_INCLUDE_NEXT
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/iterator/next.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/std_pair.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/std_pair.hpp
new file mode 100644
index 00000000000..7a882a97ad2
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/std_pair.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_STD_PAIR)
+#define FUSION_INCLUDE_STD_PAIR
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/adapted/std_pair.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/tuple.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/tuple.hpp
new file mode 100644
index 00000000000..5d167f4f9d0
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/tuple.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_TUPLE)
+#define FUSION_INCLUDE_TUPLE
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/tuple.hpp>
+
+#endif
diff --git a/src/third_party/boost-1.56.0/boost/fusion/include/value_of.hpp b/src/third_party/boost-1.56.0/boost/fusion/include/value_of.hpp
new file mode 100644
index 00000000000..33e49d8fd7d
--- /dev/null
+++ b/src/third_party/boost-1.56.0/boost/fusion/include/value_of.hpp
@@ -0,0 +1,13 @@
+/*=============================================================================
+ 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_VALUE_OF)
+#define FUSION_INCLUDE_VALUE_OF
+
+#include <boost/fusion/support/config.hpp>
+#include <boost/fusion/iterator/value_of.hpp>
+
+#endif