| 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 | |
| 7 | #ifndef BOOST_PARAMETER_TAGGED_ARGUMENT_FWD_HPP |
| 8 | #define BOOST_PARAMETER_TAGGED_ARGUMENT_FWD_HPP |
| 9 | |
| 10 | namespace boost { namespace parameter { namespace aux { |
| 11 | |
| 12 | template <typename Keyword, typename Arg> |
| 13 | class tagged_argument; |
| 14 | }}} // namespace boost::parameter::aux |
| 15 | |
| 16 | #include <boost/parameter/config.hpp> |
| 17 | |
| 18 | #if defined(BOOST_PARAMETER_HAS_PERFECT_FORWARDING) |
| 19 | |
| 20 | namespace boost { namespace parameter { namespace aux { |
| 21 | |
| 22 | template <typename Keyword, typename Arg> |
| 23 | struct tagged_argument_rref; |
| 24 | }}} // namespace boost::parameter::aux |
| 25 | |
| 26 | #endif |
| 27 | |
| 28 | #if defined(BOOST_PARAMETER_CAN_USE_MP11) |
| 29 | |
| 30 | namespace boost { namespace parameter { namespace aux { |
| 31 | |
| 32 | template <typename TaggedArg> |
| 33 | struct tagged_argument_list_of_1; |
| 34 | }}} // namespace boost::parameter::aux |
| 35 | |
| 36 | #endif |
| 37 | #endif // include guard |
| 38 | |
| 39 | |