1 // Copyright (C) 2005 Arkadiy Vertleyb, Peder Holt. 2 // Use, modification and distribution is subject to the Boost Software 3 // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 5 #ifndef BOOST_TYPEOF_STD_memory_hpp_INCLUDED 6 #define BOOST_TYPEOF_STD_memory_hpp_INCLUDED 7 8 #include <memory> 9 #include <boost/typeof/typeof.hpp> 10 11 #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP() 12 13 BOOST_TYPEOF_REGISTER_TEMPLATE(std::allocator, 1) 14 BOOST_TYPEOF_REGISTER_TEMPLATE(std::raw_storage_iterator, 2) 15 #ifndef BOOST_NO_AUTO_PTR 16 BOOST_TYPEOF_REGISTER_TEMPLATE(std::auto_ptr, 1) 17 #endif//BOOST_NO_AUTO_PTR 18 19 #endif//BOOST_TYPEOF_STD_memory_hpp_INCLUDED 20