source: NonGTP/Boost/boost/spirit/fusion/iterator/detail/joint_view_iterator/deref_traits.hpp @ 857

Revision 857, 978 bytes checked in by igarcia, 18 years ago (diff)
Line 
1/*=============================================================================
2    Copyright (c) 2003 Joel de Guzman
3
4    Use, modification and distribution is subject to the Boost Software
5    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6    http://www.boost.org/LICENSE_1_0.txt)
7==============================================================================*/
8#if !defined(FUSION_ITERATOR_DETAIL_JOINT_VIEW_ITERATOR_DEREF_TRAITS_HPP)
9#define FUSION_ITERATOR_DETAIL_JOINT_VIEW_ITERATOR_DEREF_TRAITS_HPP
10
11#include <boost/spirit/fusion/detail/config.hpp>
12#include <boost/spirit/fusion/iterator/detail/adapt_deref_traits.hpp>
13
14namespace boost { namespace fusion
15{
16    struct joint_view_iterator_tag;
17
18    namespace meta
19    {
20        template <typename Tag>
21        struct deref_impl;
22
23        template <>
24        struct deref_impl<joint_view_iterator_tag>
25            : detail::adapt_deref_traits {};
26    }
27}}
28
29#endif
30
31
Note: See TracBrowser for help on using the repository browser.