|
||||
File indexing completed on 2025-01-18 09:50:37
0001 // Copyright David Abrahams 2003. 0002 // Distributed under the Boost Software License, Version 1.0. (See 0003 // accompanying file LICENSE_1_0.txt or copy at 0004 // http://www.boost.org/LICENSE_1_0.txt) 0005 #ifndef COPY_CTOR_MUTATES_RHS_DWA2003219_HPP 0006 # define COPY_CTOR_MUTATES_RHS_DWA2003219_HPP 0007 0008 #include <boost/python/detail/is_auto_ptr.hpp> 0009 #include <boost/mpl/bool.hpp> 0010 0011 namespace boost { namespace python { namespace detail { 0012 0013 template <class T> 0014 struct copy_ctor_mutates_rhs 0015 : is_auto_ptr<T> 0016 { 0017 }; 0018 0019 }}} // namespace boost::python::detail 0020 0021 #endif // COPY_CTOR_MUTATES_RHS_DWA2003219_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |