2010-02-22 22:55:54 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2001-2007 Joel de Guzman
|
|
|
|
Copyright (c) 2005-2006 Dan Marsden
|
|
|
|
Copyright (c) 2009-2010 Christopher Schmidt
|
|
|
|
|
|
|
|
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)
|
|
|
|
==============================================================================*/
|
|
|
|
|
2010-02-25 20:10:37 +00:00
|
|
|
#ifndef BOOST_FUSION_ADAPTED_STRUCT_DETAIL_EXTENSION_HPP
|
|
|
|
#define BOOST_FUSION_ADAPTED_STRUCT_DETAIL_EXTENSION_HPP
|
2010-02-22 22:55:54 +00:00
|
|
|
|
|
|
|
#include <boost/fusion/support/category_of.hpp>
|
|
|
|
|
|
|
|
namespace boost { namespace fusion
|
|
|
|
{
|
|
|
|
struct struct_tag;
|
|
|
|
struct struct_iterator_tag;
|
|
|
|
struct assoc_struct_tag;
|
|
|
|
struct fusion_sequence_tag;
|
|
|
|
|
|
|
|
struct assoc_struct_category
|
2010-07-10 10:01:57 +00:00
|
|
|
: random_access_traversal_tag, associative_tag
|
2010-02-22 22:55:54 +00:00
|
|
|
{};
|
|
|
|
|
|
|
|
namespace extension
|
|
|
|
{
|
|
|
|
struct no_such_member;
|
|
|
|
|
|
|
|
template<typename Seq, int N>
|
|
|
|
struct struct_member;
|
|
|
|
|
2010-02-25 20:10:37 +00:00
|
|
|
template<typename Seq, int N>
|
|
|
|
struct struct_member_name;
|
|
|
|
|
2010-05-07 13:37:34 +00:00
|
|
|
template<typename Seq>
|
|
|
|
struct struct_size;
|
|
|
|
|
|
|
|
template<typename Seq>
|
|
|
|
struct struct_is_view;
|
|
|
|
|
2010-02-22 22:55:54 +00:00
|
|
|
template<typename Seq, int N>
|
|
|
|
struct struct_assoc_key;
|
|
|
|
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
|
|
|
|
#endif
|