master.hpp 934 B

123456789101112131415161718192021222324252627282930313233
  1. // (C) Copyright Tobias Schwinger
  2. //
  3. // Use modification and distribution are subject to the boost Software License,
  4. // Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).
  5. //------------------------------------------------------------------------------
  6. // no include guards, this file is intended for multiple inclusion
  7. #if BOOST_FT_ARITY_LOOP_PREFIX
  8. # ifndef BOOST_FT_DETAIL_CLASSIFIER_IMPL_MASTER_HPP_INCLUDED
  9. # define BOOST_FT_DETAIL_CLASSIFIER_IMPL_MASTER_HPP_INCLUDED
  10. # include <boost/preprocessor/facilities/identity.hpp>
  11. # endif
  12. # define BOOST_FT_type_name
  13. #elif BOOST_FT_ARITY_LOOP_IS_ITERATING
  14. template< BOOST_FT_tplargs(BOOST_PP_IDENTITY(typename)) >
  15. typename encode_charr<BOOST_FT_flags,BOOST_FT_cc_id,BOOST_FT_arity>::type
  16. classifier_impl(BOOST_FT_type);
  17. #elif BOOST_FT_ARITY_LOOP_SUFFIX
  18. # undef BOOST_FT_type_name
  19. #else
  20. # error "attempt to use arity loop master file without loop"
  21. #endif