blob: 6d2f45c8c2252e15b9a1e62eabd4c3eaff299303 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
2// (C) Copyright John Maddock 2010.
3// Use, modification and distribution are subject to the Boost Software License,
4// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt).
6//
7// See http://www.boost.org/libs/type_traits for most recent version including documentation.
8
9
10#ifndef BOOST_TT_CONDITIONAL_HPP_INCLUDED
11#define BOOST_TT_CONDITIONAL_HPP_INCLUDED
12
13#include <ndnboost/mpl/if.hpp>
14
15namespace ndnboost {
16
17template <bool b, class T, class U>
18struct conditional : public mpl::if_c<b, T, U>
19{
20};
21
22} // namespace ndnboost
23
24
25#endif // BOOST_TT_CONDITIONAL_HPP_INCLUDED