deref_data_impl.hpp 868 B

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