Chris@16: /* Chris@101: * Copyright (c) 2012-2014 Glen Joseph Fernandes Chris@16: * glenfe at live dot com Chris@16: * Chris@16: * Distributed under the Boost Software License, Chris@16: * Version 1.0. (See accompanying file LICENSE_1_0.txt Chris@16: * or copy at http://boost.org/LICENSE_1_0.txt) Chris@16: */ Chris@16: #ifndef BOOST_SMART_PTR_DETAIL_SP_IF_ARRAY_HPP Chris@16: #define BOOST_SMART_PTR_DETAIL_SP_IF_ARRAY_HPP Chris@16: Chris@16: #include Chris@16: Chris@16: namespace boost { Chris@16: namespace detail { Chris@101: template Chris@16: struct sp_if_array; Chris@101: Chris@101: template Chris@16: struct sp_if_array { Chris@16: typedef boost::shared_ptr type; Chris@16: }; Chris@101: Chris@101: template Chris@16: struct sp_if_size_array; Chris@101: Chris@101: template Chris@16: struct sp_if_size_array { Chris@16: typedef boost::shared_ptr type; Chris@16: }; Chris@16: } Chris@16: } Chris@16: Chris@16: #endif