File indexing completed on 2025-12-16 09:45:46
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_FUSION_ADAPTED_ARRAY_CATEGORY_OF_IMPL_HPP
0009 #define BOOST_FUSION_ADAPTED_ARRAY_CATEGORY_OF_IMPL_HPP
0010
0011 namespace boost { namespace fusion
0012 {
0013 struct random_access_traversal_tag;
0014
0015 namespace extension
0016 {
0017 template<typename>
0018 struct category_of_impl;
0019
0020 template<>
0021 struct category_of_impl<po_array_tag>
0022 {
0023 template<typename Seq>
0024 struct apply
0025 {
0026 typedef random_access_traversal_tag type;
0027 };
0028 };
0029 }
0030 }}
0031
0032 #endif