1 | // Copyright David Abrahams, Daniel Wallin 2003. |
---|---|
2 | // Distributed under the Boost Software License, Version 1.0. |
3 | // (See accompanying file LICENSE_1_0.txt or copy at |
4 | // http://www.boost.org/LICENSE_1_0.txt) |
5 | |
6 | #ifndef BOOST_PARAMETER_AUX_LAMBDA_TAG_HPP |
7 | #define BOOST_PARAMETER_AUX_LAMBDA_TAG_HPP |
8 | |
9 | namespace boost { namespace parameter { namespace aux { |
10 | |
11 | // Tag type passed to MPL lambda. |
12 | struct lambda_tag; |
13 | }}} // namespace boost::parameter::aux |
14 | |
15 | #endif // include guard |
16 | |
17 |