blob: 91a9ce0530decfd4d17257fc9f583c22219538de [file] [log] [blame]
// (C) Copyright John Maddock 2010.
// Use, modification and distribution are subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt).
//
// See http://www.boost.org/libs/type_traits for most recent version including documentation.
#ifndef NDNBOOST_TT_CONDITIONAL_HPP_INCLUDED
#define NDNBOOST_TT_CONDITIONAL_HPP_INCLUDED
#include <ndnboost/mpl/if.hpp>
namespace ndnboost {
template <bool b, class T, class U>
struct conditional : public mpl::if_c<b, T, U>
{
};
} // namespace ndnboost
#endif // NDNBOOST_TT_CONDITIONAL_HPP_INCLUDED