Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.

libs/python/test/pointer_type_id_test.cpp

#include <boost/python/type_id.hpp>
#include <cassert>
#include <boost/python/converter/pointer_type_id.hpp>

int main()
{
    using namespace boost::python::converter;
    
    boost::python::type_info x
        = boost::python::type_id<int>();
    

    assert(pointer_type_id<int*>() == x);
    assert(pointer_type_id<int const*>() == x);
    assert(pointer_type_id<int volatile*>() == x);
    assert(pointer_type_id<int const volatile*>() == x);
    
    assert(pointer_type_id<int*&>() == x);
    assert(pointer_type_id<int const*&>() == x);
    assert(pointer_type_id<int volatile*&>() == x);
    assert(pointer_type_id<int const volatile*&>() == x);
    
    assert(pointer_type_id<int*const&>() == x);
    assert(pointer_type_id<int const*const&>() == x);
    assert(pointer_type_id<int volatile*const&>() == x);
    assert(pointer_type_id<int const volatile*const&>() == x);
    
    assert(pointer_type_id<int*volatile&>() == x);
    assert(pointer_type_id<int const*volatile&>() == x);
    assert(pointer_type_id<int volatile*volatile&>() == x);
    assert(pointer_type_id<int const volatile*volatile&>() == x);
    
    assert(pointer_type_id<int*const volatile&>() == x);
    assert(pointer_type_id<int const*const volatile&>() == x);
    assert(pointer_type_id<int volatile*const volatile&>() == x);
    assert(pointer_type_id<int const volatile*const volatile&>() == x);
    
    return 0;
}