1 #ifndef BOOST_DETAIL_SP_TYPEINFO_HPP_INCLUDED 2 #define BOOST_DETAIL_SP_TYPEINFO_HPP_INCLUDED 3 4 // MS compatible compilers support #pragma once 5 6 #if defined(_MSC_VER) && (_MSC_VER >= 1020) 7 # pragma once 8 #endif 9 10 // detail/sp_typeinfo.hpp 11 // 12 // Deprecated, please use boost/core/typeinfo.hpp 13 // 14 // Copyright 2007 Peter Dimov 15 // 16 // Distributed under the Boost Software License, Version 1.0. 17 // See accompanying file LICENSE_1_0.txt or copy at 18 // http://www.boost.org/LICENSE_1_0.txt) 19 20 #include <boost/core/typeinfo.hpp> 21 #include <boost/config/header_deprecated.hpp> 22 23 BOOST_HEADER_DEPRECATED( "<boost/core/typeinfo.hpp>" ) 24 25 namespace boost 26 { 27 28 namespace detail 29 { 30 31 typedef boost::core::typeinfo sp_typeinfo; 32 33 } // namespace detail 34 35 } // namespace boost 36 37 #define BOOST_SP_TYPEID(T) BOOST_CORE_TYPEID(T) 38 39 #endif // #ifndef BOOST_DETAIL_SP_TYPEINFO_HPP_INCLUDED 40