Mirror reflection library - Lagoon run-time layer 0.5.13

lagoon/example/for_each_10.cpp

This example shows the usage of the namespace reflection functions and range for-each utility with lambda functions and the extract and link adapters

Copyright 2008-2010 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 <lagoon/lagoon.hpp>
#include <lagoon/range/extract.hpp>
#include <lagoon/range/link.hpp>
#include <lagoon/range/for_each.hpp>
#include <iostream>
#include "classes.hpp"

int main(void)
{
    using namespace lagoon;
    typedef shared<meta_named_scoped_object> shared_mnso;
    typedef shared<meta_type> shared_mt;
    //
    // reflect the global scope
    auto meta_gs = reflected_global_scope();
    // get the std, boost and test meta-namespaces
    auto meta_std = meta_gs->namespace_("std");
    auto meta_boost = meta_gs->namespace_("boost");
    auto meta_test = meta_gs->namespace_("test");
    // from each of those three namespaces extract only the member
    // types and link the three ranges into a single range (using
    // an initializer list), then use the lambda function
    // to print the base name of the elements from the linked range
    for_each(
        link({
            extract<meta_type>(meta_std->members()),
            extract<meta_type>(meta_boost->members()),
            extract<meta_type>(meta_test->members())
        }),
        [](const shared<meta_type>& metatype)
        {
            std::cout << metatype->base_name() << std::endl;
        }
    );
    return 0;
}

/* Example of output:
string
wstring
tm
A
B
C
D
E
F
G
H
*/

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.