joint_view_fwd.hpp 611 B

123456789101112131415161718
  1. /*=============================================================================
  2. Copyright (c) 2011 Eric Niebler
  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. #if !defined(BOOST_FUSION_JOINT_VIEW_FWD_HPP_INCLUDED)
  7. #define BOOST_FUSION_JOINT_VIEW_FWD_HPP_INCLUDED
  8. namespace boost { namespace fusion
  9. {
  10. struct joint_view_tag;
  11. template <typename Sequence1, typename Sequence2>
  12. struct joint_view;
  13. }}
  14. #endif