source: NonGTP/Boost/boost/python/return_by_value.hpp @ 857

Revision 857, 799 bytes checked in by igarcia, 18 years ago (diff)
Line 
1// Copyright David Abrahams 2002.
2// Distributed under the Boost Software License, Version 1.0. (See
3// accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5#ifndef BY_VALUE_DWA20021015_HPP
6# define BY_VALUE_DWA20021015_HPP
7
8# include <boost/python/detail/prefix.hpp>
9
10# include <boost/python/to_python_value.hpp>
11# include <boost/type_traits/add_reference.hpp>
12# include <boost/type_traits/add_const.hpp>
13
14# include <boost/python/detail/value_arg.hpp>
15
16namespace boost { namespace python {
17
18struct return_by_value
19{
20    template <class R>
21    struct apply
22    {
23       typedef to_python_value<
24           typename detail::value_arg<R>::type
25       > type;
26    };
27};
28
29}} // namespace boost::python
30
31#endif // BY_VALUE_DWA20021015_HPP
Note: See TracBrowser for help on using the repository browser.