summaryrefslogtreecommitdiff
path: root/boost/fusion/view/repetitive_view/repetitive_view.hpp
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2012-10-30 12:57:26 -0700
committerAnas Nashif <anas.nashif@intel.com>2012-10-30 12:57:26 -0700
commit1a78a62555be32868418fe52f8e330c9d0f95d5a (patch)
treed3765a80e7d3b9640ec2e930743630cd6b9fce2b /boost/fusion/view/repetitive_view/repetitive_view.hpp
downloadboost-1a78a62555be32868418fe52f8e330c9d0f95d5a.tar.gz
boost-1a78a62555be32868418fe52f8e330c9d0f95d5a.tar.bz2
boost-1a78a62555be32868418fe52f8e330c9d0f95d5a.zip
Imported Upstream version 1.49.0upstream/1.49.0
Diffstat (limited to 'boost/fusion/view/repetitive_view/repetitive_view.hpp')
-rw-r--r--boost/fusion/view/repetitive_view/repetitive_view.hpp52
1 files changed, 52 insertions, 0 deletions
diff --git a/boost/fusion/view/repetitive_view/repetitive_view.hpp b/boost/fusion/view/repetitive_view/repetitive_view.hpp
new file mode 100644
index 0000000000..509db859c1
--- /dev/null
+++ b/boost/fusion/view/repetitive_view/repetitive_view.hpp
@@ -0,0 +1,52 @@
+/*=============================================================================
+ Copyright (c) 2007 Tobias Schwinger
+
+ 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(BOOST_FUSION_REPETITIVE_REPETITIVE_VIEW_VIEW_HPP_INCLUDED)
+#define BOOST_FUSION_REPETITIVE_VIEW_REPETITIVE_VIEW_HPP_INCLUDED
+
+#include <boost/type_traits/remove_reference.hpp>
+#include <boost/mpl/if.hpp>
+
+#include <boost/fusion/support/is_view.hpp>
+#include <boost/fusion/support/category_of.hpp>
+
+#include <boost/fusion/view/repetitive_view/detail/begin_impl.hpp>
+#include <boost/fusion/view/repetitive_view/detail/end_impl.hpp>
+
+
+namespace boost { namespace fusion
+{
+ struct repetitive_view_tag;
+ struct fusion_sequence_tag;
+
+ template<typename Sequence> struct repetitive_view
+ : sequence_base< repetitive_view<Sequence> >
+ {
+ typedef repetitive_view_tag fusion_tag;
+ typedef fusion_sequence_tag tag; // this gets picked up by MPL
+ typedef mpl::true_ is_view;
+
+ typedef single_pass_traversal_tag category;
+
+ typedef typename boost::remove_reference<Sequence>::type sequence_type;
+ typedef typename
+ mpl::if_<traits::is_view<Sequence>, Sequence, sequence_type&>::type
+ stored_seq_type;
+
+ repetitive_view(Sequence& in_seq)
+ : seq(in_seq) {}
+
+ stored_seq_type seq;
+
+ private:
+ // silence MSVC warning C4512: assignment operator could not be generated
+ repetitive_view& operator= (repetitive_view const&);
+ };
+
+}}
+
+#endif