tagged_argument_fwd.hpp 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Copyright Daniel Wallin, David Abrahams 2005.
  2. // Copyright Cromwell D. Enage 2017.
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // (See accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. #ifndef BOOST_PARAMETER_TAGGED_ARGUMENT_FWD_HPP
  7. #define BOOST_PARAMETER_TAGGED_ARGUMENT_FWD_HPP
  8. namespace boost { namespace parameter { namespace aux {
  9. template <typename Keyword, typename Arg>
  10. class tagged_argument;
  11. }}} // namespace boost::parameter::aux
  12. #include <boost/parameter/config.hpp>
  13. #if defined(BOOST_PARAMETER_HAS_PERFECT_FORWARDING)
  14. namespace boost { namespace parameter { namespace aux {
  15. template <typename Keyword, typename Arg>
  16. struct tagged_argument_rref;
  17. }}} // namespace boost::parameter::aux
  18. #endif
  19. #if defined(BOOST_PARAMETER_CAN_USE_MP11)
  20. namespace boost { namespace parameter { namespace aux {
  21. template <typename TaggedArg>
  22. struct tagged_argument_list_of_1;
  23. }}} // namespace boost::parameter::aux
  24. #endif
  25. #endif // include guard