blob: 8f9d56d33a052bcd9a3fc05515a40274bcdcd7c9 [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001/*
2 * Copyright (c) 2012 Glen Joseph Fernandes
3 * glenfe at live dot com
4 *
5 * Distributed under the Boost Software License,
6 * Version 1.0. (See accompanying file LICENSE_1_0.txt
7 * or copy at http://boost.org/LICENSE_1_0.txt)
8 */
9#ifndef BOOST_SMART_PTR_DETAIL_SP_IF_ARRAY_HPP
10#define BOOST_SMART_PTR_DETAIL_SP_IF_ARRAY_HPP
11
Jeff Thompson2277ce52013-08-01 17:34:11 -070012#include <ndnboost/smart_ptr/shared_ptr.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070013
14namespace ndnboost {
15 namespace detail {
16 template<typename T>
17 struct sp_if_array;
18 template<typename T>
19 struct sp_if_array<T[]> {
20 typedef ndnboost::shared_ptr<T[]> type;
21 };
22 template<typename T>
23 struct sp_if_size_array;
24 template<typename T, std::size_t N>
25 struct sp_if_size_array<T[N]> {
26 typedef ndnboost::shared_ptr<T[N]> type;
27 };
28 }
29}
30
31#endif