mirror of
https://github.com/boostorg/url.git
synced 2026-01-21 17:32:21 +00:00
The Rule concept is changed: * rules are stateful values * nested value_type holds the result of parsing * member function `Rule::parse` is the algorithm * parse returns `result<value_type>` And: * All rfc3986 rules are reimplemented * New grammar non-terminal elements introduced: - char_rule - not_empty_rule - optional_rule - sequence_rule - variant_rule
12 lines
362 B
C++
12 lines
362 B
C++
//
|
|
// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
// Official repository: https://github.com/CPPAlliance/url
|
|
//
|
|
|
|
// Test that header file is self-contained.
|
|
#include <boost/url/variant.hpp>
|