File indexing completed on 2025-10-30 08:36:46
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_URL_RFC_DETAIL_PATH_RULES_HPP
0011 #define BOOST_URL_RFC_DETAIL_PATH_RULES_HPP
0012
0013 #include "boost/url/rfc/pchars.hpp"
0014 #include "boost/url/rfc/pct_encoded_rule.hpp"
0015 #include "boost/url/grammar/delim_rule.hpp"
0016 #include "boost/url/grammar/range_rule.hpp"
0017 #include "boost/url/grammar/tuple_rule.hpp"
0018
0019 namespace boost {
0020 namespace urls {
0021 namespace detail {
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037 constexpr auto segment_rule =
0038 pct_encoded_rule(pchars);
0039
0040 }
0041 }
0042 }
0043
0044 #endif