blob: 9aa237b7d48d3c0d792add94b488e505de5f32cf [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_VOID_HPP_INCLUDED
3#define NDNBOOST_MPL_VOID_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -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: void.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
17#include <ndnboost/mpl/void_fwd.hpp>
18#include <ndnboost/mpl/bool.hpp>
19#include <ndnboost/mpl/aux_/na_spec.hpp>
20#include <ndnboost/mpl/aux_/config/msvc.hpp>
21#include <ndnboost/mpl/aux_/config/workaround.hpp>
22
Jeff Thompson3d613fd2013-10-15 15:39:04 -070023NDNBOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_OPEN
Jeff Thompsona28eed82013-08-22 16:21:10 -070024
25// [JDG Feb-4-2003] made void_ a complete type to allow it to be
26// instantiated so that it can be passed in as an object that can be
27// used to select an overloaded function. Possible use includes signaling
28// a zero arity functor evaluation call.
29struct void_ { typedef void_ type; };
30
Jeff Thompson3d613fd2013-10-15 15:39:04 -070031NDNBOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_CLOSE
Jeff Thompsona28eed82013-08-22 16:21:10 -070032
33namespace ndnboost { namespace mpl {
34
35template< typename T >
36struct is_void_
37 : false_
38{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070039#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsona28eed82013-08-22 16:21:10 -070040 using false_::value;
41#endif
42};
43
44template<>
45struct is_void_<void_>
46 : true_
47{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070048#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsona28eed82013-08-22 16:21:10 -070049 using true_::value;
50#endif
51};
52
53template< typename T >
54struct is_not_void_
55 : true_
56{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070057#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsona28eed82013-08-22 16:21:10 -070058 using true_::value;
59#endif
60};
61
62template<>
63struct is_not_void_<void_>
64 : false_
65{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070066#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300)
Jeff Thompsona28eed82013-08-22 16:21:10 -070067 using false_::value;
68#endif
69};
70
Jeff Thompson3d613fd2013-10-15 15:39:04 -070071NDNBOOST_MPL_AUX_NA_SPEC(1, is_void_)
72NDNBOOST_MPL_AUX_NA_SPEC(1, is_not_void_)
Jeff Thompsona28eed82013-08-22 16:21:10 -070073
74}}
75
Jeff Thompson3d613fd2013-10-15 15:39:04 -070076#endif // NDNBOOST_MPL_VOID_HPP_INCLUDED