/usr/include/boost/ptr_container/detail
NameSizeModeActions
associative_ptr_container.hpp142960644editdlrm
default_deleter.hpp21370644editdlrm
is_convertible.hpp24780644editdlrm
map_iterator.hpp37350644editdlrm
meta_functions.hpp13780644editdlrm
move.hpp11000644editdlrm
ptr_container_disable_deprecated.hpp10960644editdlrm
reversible_ptr_container.hpp306720644editdlrm
scoped_deleter.hpp36140644editdlrm
serialize_ptr_map_adapter.hpp34870644editdlrm
serialize_reversible_cont.hpp32950644editdlrm
serialize_xml_names.hpp8760644editdlrm
static_move_ptr.hpp59490644editdlrm
throw_exception.hpp8540644editdlrm
void_ptr_iterator.hpp77760644editdlrm
Edit: /usr/include/boost/ptr_container/detail/move.hpp (1100B)
// (C) Copyright Daniel Wallin 2004. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) // Contains the definitions of the class template move_source and the function // template move, which together make move pointers moveable. #ifndef BOOST_MOVE_HPP_INCLUDED #define BOOST_MOVE_HPP_INCLUDED namespace boost { namespace ptr_container_detail { namespace move_ptrs { #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) #pragma warning(push) #pragma warning(disable:4512) #endif template class move_source { public: move_source(Ptr& ptr) : ptr_(ptr) {} Ptr& ptr() const { return ptr_; } private: Ptr& ptr_; move_source(const Ptr&); }; #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) #pragma warning(pop) #endif } // End namespace move_ptrs. template move_ptrs::move_source move(T& x) { return move_ptrs::move_source(x); } } // namespace 'ptr_container_detail' } // End namespace boost. #endif // #ifndef BOOST_MOVE_HPP_INCLUDED