map_index.hpp 616 B

12345678910111213141516171819
  1. /*=============================================================================
  2. Copyright (c) 2005-2013 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(BOOST_FUSION_MAP_INDEX_02032013_2233)
  7. #define BOOST_FUSION_MAP_INDEX_02032013_2233
  8. namespace boost { namespace fusion { namespace detail
  9. {
  10. template <int N>
  11. struct map_index
  12. {
  13. static int const value = N;
  14. };
  15. }}}
  16. #endif