Chris@16: /*============================================================================= Chris@16: Copyright (c) 2001-2007 Joel de Guzman Chris@16: Copyright (c) 2005-2006 Dan Marsden Chris@16: Copyright (c) 2009-2010 Christopher Schmidt Chris@16: Chris@16: Distributed under the Boost Software License, Version 1.0. (See accompanying Chris@16: file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: ==============================================================================*/ Chris@16: Chris@16: #ifndef BOOST_FUSION_ADAPTED_STRUCT_DETAIL_EXTENSION_HPP Chris@16: #define BOOST_FUSION_ADAPTED_STRUCT_DETAIL_EXTENSION_HPP Chris@16: Chris@101: #include Chris@16: #include Chris@16: Chris@16: namespace boost { namespace fusion Chris@16: { Chris@16: struct struct_tag; Chris@16: struct struct_iterator_tag; Chris@16: struct assoc_struct_tag; Chris@16: struct fusion_sequence_tag; Chris@16: Chris@16: struct assoc_struct_category Chris@16: : random_access_traversal_tag, associative_tag Chris@16: {}; Chris@16: Chris@16: namespace extension Chris@16: { Chris@16: struct no_such_member; Chris@16: Chris@16: struct access Chris@16: { Chris@16: template Chris@16: struct struct_member; Chris@16: Chris@16: template Chris@16: struct adt_attribute_access; Chris@16: }; Chris@16: Chris@16: template Chris@16: struct adt_attribute_proxy; Chris@16: Chris@16: template Chris@16: struct struct_member_name; Chris@16: Chris@16: template Chris@16: struct struct_size; Chris@16: Chris@16: template Chris@16: struct struct_is_view; Chris@16: Chris@16: template Chris@16: struct struct_assoc_key; Chris@16: Chris@16: } Chris@16: }} Chris@16: Chris@16: #endif