Files
utility/test/named_params_sfinae.cpp

80 lines
1.6 KiB
C++
Raw Normal View History

2004-01-17 14:15:20 +00:00
// Copyright David Abrahams, Daniel Wallin 2003. Use, modification and
// distribution is 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
#include <boost/named_params.hpp>
#include <cassert>
#include <string>
#include <boost/type_traits/is_convertible.hpp>
2004-01-17 15:53:40 +00:00
#include <iostream>
2004-01-17 14:15:20 +00:00
namespace test
{
using boost::keyword;
using boost::keywords;
using boost::named_param;
struct name_t; keyword<name_t> name;
struct value_t; keyword<value_t> value;
struct f_keywords
: keywords<
named_param<
name_t
, boost::mpl::true_
, boost::is_convertible<boost::mpl::_, std::string>
>
, named_param<
value_t
, boost::mpl::true_
, boost::is_convertible<boost::mpl::_, float>
>
2004-01-17 15:53:40 +00:00
>
2004-01-17 14:15:20 +00:00
{};
2004-01-17 15:53:40 +00:00
template<class P>
void f_impl(P const& p)
2004-01-17 14:15:20 +00:00
{
std::string s = p[name | "bar"];
float v = p[value | 3.f];
2004-01-17 15:53:40 +00:00
2004-01-17 14:15:20 +00:00
assert(s == "foo");
assert(v == 3.f);
}
2004-01-17 15:53:40 +00:00
void f()
{
f_impl(f_keywords()());
}
template<class A0>
2004-01-17 15:58:17 +00:00
void f(A0 const& a0
, typename f_keywords::restrict<A0>::type = f_keywords())
2004-01-17 15:53:40 +00:00
{
f_impl(f_keywords()(a0));
}
template<class A0, class A1>
2004-01-17 15:58:17 +00:00
void f(A0 const& a0, A1 const& a1
, typename f_keywords::restrict<A0, A1>::type = f_keywords())
2004-01-17 15:53:40 +00:00
{
f_impl(f_keywords()(a0, a1));
}
2004-01-17 14:15:20 +00:00
} // namespace test
int main()
{
using test::name;
using test::value;
using test::f;
f("foo");
f("foo", 3.f);
f(value = 3.f, name = "foo");
2004-01-17 15:53:40 +00:00
return 0;
2004-01-17 14:15:20 +00:00
}