yesno.hpp 792 B

1234567891011121314151617181920212223242526
  1. // Copyright Daniel Wallin, David Abrahams 2005. Use, modification and
  2. // distribution is subject to the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef YESNO_050328_HPP
  6. #define YESNO_050328_HPP
  7. #include <boost/mpl/bool.hpp>
  8. namespace boost { namespace parameter { namespace aux {
  9. // types used with the "sizeof trick" to capture the results of
  10. // overload resolution at compile-time.
  11. typedef char yes_tag;
  12. typedef char (&no_tag)[2];
  13. // mpl::true_ and mpl::false_ are not distinguishable by sizeof(),
  14. // so we pass them through these functions to get a type that is.
  15. yes_tag to_yesno(mpl::true_);
  16. no_tag to_yesno(mpl::false_);
  17. }}} // namespace boost::parameter::aux
  18. #endif // YESNO_050328_HPP