transform_view_fwd.hpp 689 B

12345678910111213141516171819202122
  1. /*=============================================================================
  2. Copyright (c) 2001-2011 Joel de Guzman
  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(FUSION_TRANSFORM_VIEW_FORWARD_01052006_1839)
  7. #define FUSION_TRANSFORM_VIEW_FORWARD_01052006_1839
  8. namespace boost { namespace fusion
  9. {
  10. struct void_;
  11. struct transform_view_tag;
  12. struct transform_view2_tag;
  13. template <typename A, typename B, typename C = void_>
  14. struct transform_view;
  15. }}
  16. #endif