Mirror reflection library - Rubber type-erasure utility 0.5.13

rubber/example/for_each_02.cpp

This example shows the usage of the type erasures for compile-time Mirror's meta-object with the for-each algorithm and lambda functions

Copyright 2008-2011 Matus Chochlik. Distributed under 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 <mirror/mirror.hpp>
#include <rubber/rubber.hpp>
#include <iostream>

int main(void)
{
    mirror::mp::for_each<
        mirror::members<
            MIRRORED_GLOBAL_SCOPE()
        >
    >(
        [](const rubber::meta_named_scoped_object& member)
        {
            // print the full name of the reflected object
            std::cout <<
                member.self().construct_name() <<
                " " <<
                member.base_name() <<
                std::endl;
        }
    );
    return 0;
}

/* Example of output:
namespace std
namespace boost
namespace mirror
type void
type bool
type char
type unsigned char
type wchar_t
type short int
type int
type long int
type unsigned short int
type unsigned int
type unsigned long int
type float
type double
type long double
*/


Copyright © 2006-2011 Matus Chochlik, University of Zilina, Zilina, Slovakia.
<matus.chochlik -at- fri.uniza.sk>
<chochlik -at -gmail.com>
Documentation generated on Fri Dec 16 2011 by Doxygen (version 1.7.3).
Important note: Although the 'boostified' version of Mirror uses the Boost C++ libraries Coding Guidelines and is implemented inside of the boost namespace, it IS NOT an officially reviewed and accepted Boost library. Mirror is being developed with the intention to be submitted for review for inclusion to the Boost C++ libraries.