source: NonGTP/Boost/boost/python/detail/copy_ctor_mutates_rhs.hpp @ 857

Revision 857, 601 bytes checked in by igarcia, 18 years ago (diff)
Line 
1// Copyright David Abrahams 2003.
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 COPY_CTOR_MUTATES_RHS_DWA2003219_HPP
6# define COPY_CTOR_MUTATES_RHS_DWA2003219_HPP
7
8#include <boost/python/detail/is_auto_ptr.hpp>
9#include <boost/mpl/bool.hpp>
10
11namespace boost { namespace python { namespace detail {
12
13template <class T>
14struct copy_ctor_mutates_rhs
15    : is_auto_ptr<T>
16{
17};
18
19}}} // namespace boost::python::detail
20
21#endif // COPY_CTOR_MUTATES_RHS_DWA2003219_HPP
Note: See TracBrowser for help on using the repository browser.