50 lines
1.4 KiB
C++
50 lines
1.4 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2001-2011 Joel de Guzman
|
|
Copyright (c) 2011 Eric Niebler
|
|
|
|
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 <boost/detail/lightweight_test.hpp>
|
|
#include <boost/fusion/container/vector/vector.hpp>
|
|
#include <boost/fusion/algorithm/iteration/for_each.hpp>
|
|
#include <boost/fusion/container/generation/make_vector.hpp>
|
|
#include "../sequence/tree.hpp"
|
|
|
|
struct print
|
|
{
|
|
template <typename T>
|
|
void operator()(T const& v) const
|
|
{
|
|
std::cout << "[ " << v << " ] ";
|
|
}
|
|
};
|
|
|
|
int
|
|
main()
|
|
{
|
|
using namespace boost::fusion;
|
|
|
|
{
|
|
for_each(
|
|
make_tree(
|
|
make_vector(double(0),'B')
|
|
, make_tree(
|
|
make_vector(1,2,long(3))
|
|
, make_tree(make_vector('a','b','c'))
|
|
, make_tree(make_vector(short('d'),'e','f'))
|
|
)
|
|
, make_tree(
|
|
make_vector(4,5,6)
|
|
, make_tree(make_vector(float(1),'h','i'))
|
|
, make_tree(make_vector('j','k','l'))
|
|
)
|
|
)
|
|
, print()
|
|
);
|
|
}
|
|
|
|
return boost::report_errors();
|
|
}
|
|
|