blob: eb9f81e4982ea511c9a4b2a2d7c59760b6960213 [file] [log] [blame]
Jeff Thompsonf7d49942013-08-01 16:47:40 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_AUX_NA_HPP_INCLUDED
3#define NDNBOOST_MPL_AUX_NA_HPP_INCLUDED
Jeff Thompsonf7d49942013-08-01 16:47:40 -07004
5// Copyright Aleksey Gurtovoy 2001-2004
6//
7// Distributed under the Boost Software License, Version 1.0.
8// (See accompanying file LICENSE_1_0.txt or copy at
9// http://www.boost.org/LICENSE_1_0.txt)
10//
11// See http://www.boost.org/libs/mpl for documentation.
12
13// $Id: na.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
14// $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $
15// $Revision: 49267 $
16
Jeff Thompson2277ce52013-08-01 17:34:11 -070017#include <ndnboost/mpl/bool.hpp>
18#include <ndnboost/mpl/aux_/na_fwd.hpp>
19#include <ndnboost/mpl/aux_/config/msvc.hpp>
20#include <ndnboost/mpl/aux_/config/ctps.hpp>
Jeff Thompsonf7d49942013-08-01 16:47:40 -070021
22namespace ndnboost { namespace mpl {
23
24template< typename T >
25struct is_na
26 : false_
27{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070028#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070029 using false_::value;
30#endif
31};
32
33template<>
34struct is_na<na>
35 : true_
36{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070037#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070038 using true_::value;
39#endif
40};
41
42template< typename T >
43struct is_not_na
44 : true_
45{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070046#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070047 using true_::value;
48#endif
49};
50
51template<>
52struct is_not_na<na>
53 : false_
54{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070055#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070056 using false_::value;
57#endif
58};
59
Jeff Thompson3d613fd2013-10-15 15:39:04 -070060#if !defined(NDNBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
Jeff Thompsonf7d49942013-08-01 16:47:40 -070061template< typename T, typename U > struct if_na
62{
63 typedef T type;
64};
65
66template< typename U > struct if_na<na,U>
67{
68 typedef U type;
69};
70#else
71template< typename T > struct if_na_impl
72{
73 template< typename U > struct apply
74 {
75 typedef T type;
76 };
77};
78
79template<> struct if_na_impl<na>
80{
81 template< typename U > struct apply
82 {
83 typedef U type;
84 };
85};
86
87template< typename T, typename U > struct if_na
88 : if_na_impl<T>::template apply<U>
89{
90};
91#endif
92
93}}
94
Jeff Thompson3d613fd2013-10-15 15:39:04 -070095#endif // NDNBOOST_MPL_AUX_NA_HPP_INCLUDED