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

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