1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef BOOST_URL_RFC_DETAIL_PATH_RULES_HPP
- #define BOOST_URL_RFC_DETAIL_PATH_RULES_HPP
- #include "boost/url/rfc/pchars.hpp"
- #include "boost/url/rfc/pct_encoded_rule.hpp"
- #include "boost/url/grammar/delim_rule.hpp"
- #include "boost/url/grammar/range_rule.hpp"
- #include "boost/url/grammar/tuple_rule.hpp"
- namespace boost {
- namespace urls {
- namespace detail {
- constexpr auto segment_rule =
- pct_encoded_rule(pchars);
- }
- }
- }
- #endif
|