File indexing completed on 2025-01-18 09:31:08
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_FUSION_ADAPTED_STRUCT_DETAIL_CATEGORY_OF_IMPL_HPP
0011 #define BOOST_FUSION_ADAPTED_STRUCT_DETAIL_CATEGORY_OF_IMPL_HPP
0012
0013 namespace boost { namespace fusion
0014 {
0015 namespace extension
0016 {
0017 template<typename>
0018 struct category_of_impl;
0019
0020 template<>
0021 struct category_of_impl<struct_tag>
0022 {
0023 template<typename Seq>
0024 struct apply
0025 {
0026 typedef random_access_traversal_tag type;
0027 };
0028 };
0029
0030 template<>
0031 struct category_of_impl<assoc_struct_tag>
0032 {
0033 template<typename Seq>
0034 struct apply
0035 {
0036 typedef assoc_struct_category type;
0037 };
0038 };
0039 }
0040 }}
0041
0042 #endif