boost_callable_traits 0.1.0

Boost C++ library boost_callable_traits packaged using Zanbil
Documentation
#include <tuple>
#include <utility>
#include <type_traits>
#include <boost/callable_traits/qualified_class_of.hpp>
#include "test.hpp"

struct foo;

int main() {

    {
        using f = void(foo::*)();
        using test =  TRAIT(qualified_class_of, f);
        using expect = foo &;
        CT_ASSERT(std::is_same<test, expect>::value);
    }

    {
        using f = void(foo::*)() const;
        using test =  TRAIT(qualified_class_of, f);
        using expect = foo const &;
        CT_ASSERT(std::is_same<test, expect>::value);
    }

    {
        using f = void(foo::*)() volatile;
        using test =  TRAIT(qualified_class_of, f);
        using expect = foo volatile &;
        CT_ASSERT(std::is_same<test, expect>::value);
    }

    {
        using f = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int, ...) const volatile;
        using test =  TRAIT(qualified_class_of, f);
        using expect = foo const volatile &;
        CT_ASSERT(std::is_same<test, expect>::value);
    }

    {
        using f = int foo::*;
        using test =  TRAIT(qualified_class_of, f);
        using expect = foo const &;
        CT_ASSERT(std::is_same<test, expect>::value);
    }

    {
        using f = const int foo::*;
        using test =  TRAIT(qualified_class_of, f);
        using expect = foo const &;
        CT_ASSERT(std::is_same<test, expect>::value);
    }
}