| 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 | |
| 22 | namespace boost |
| 23 | { |
| 24 | |
| 25 | namespace detail |
| 26 | { |
| 27 | |
| 28 | typedef boost::core::typeinfo sp_typeinfo; |
| 29 | |
| 30 | } // namespace detail |
| 31 | |
| 32 | } // namespace boost |
| 33 | |
| 34 | #define BOOST_SP_TYPEID(T) BOOST_CORE_TYPEID(T) |
| 35 | |
| 36 | #endif // #ifndef BOOST_DETAIL_SP_TYPEINFO_HPP_INCLUDED |
| 37 | |