blob: 33c892532e1477e7f21f0be8757808a8e77057ee [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 */
Jeff Thompson3d613fd2013-10-15 15:39:04 -07009#ifndef NDNBOOST_SMART_PTR_DETAIL_SP_IF_ARRAY_HPP
10#define NDNBOOST_SMART_PTR_DETAIL_SP_IF_ARRAY_HPP
Jeff Thompsonf7d49942013-08-01 16:47:40 -070011
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