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 11 namespace boost { namespace python { namespace detail { 12 13 template <class T> 14 struct 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 22