• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Copyright (c) 2009 Christopher Schmidt
3 
4     Distributed under the Boost Software License, Version 1.0. (See accompanying
5     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 ==============================================================================*/
7 
8 #ifndef BOOST_FUSION_EXAMPLE_EXTENSION_DETAIL_DEREF_DATA_IMPL_HPP
9 #define BOOST_FUSION_EXAMPLE_EXTENSION_DETAIL_DEREF_DATA_IMPL_HPP
10 
11 namespace example
12 {
13     struct example_struct_iterator_tag;
14 }
15 
16 namespace boost { namespace fusion {
17 
18     namespace extension
19     {
20         template<typename Tag>
21         struct deref_data_impl;
22 
23         template<>
24         struct deref_data_impl<example::example_struct_iterator_tag>
25           : deref_impl<example::example_struct_iterator_tag>
26         {};
27     }
28 }}
29 
30 #endif
31