mirror of
https://github.com/boostorg/beast.git
synced 2025-08-01 05:44:38 +02:00
Remove mention of Boost Property Tree
Fix #2445 Passing mention in documentation could suggest the more apt new boost library (since 1.75.0)
This commit is contained in:
@@ -73,16 +73,15 @@ something that is not a container for body octets, such as a
|
||||
[@boost:/libs/filesystem/doc/reference.html#class-path `boost::filesystem::path`].
|
||||
Or, a more structured container may be chosen. This declares a body's
|
||||
value type as a JSON tree structure produced from a
|
||||
[@boost:/doc/html/property_tree/parsers.html#property_tree.parsers.json_parser `boost::property_tree::json_parser`]:
|
||||
[@boost:/doc/html/json/input_output.html#json.input_output.parsing.streaming_parser `boost::json::stream_parser`]:
|
||||
```
|
||||
#include <boost/property_tree/ptree.hpp>
|
||||
#include <boost/property_tree/json_parser.hpp>
|
||||
#include <boost/json/stream_parser.hpp>
|
||||
|
||||
struct Body
|
||||
{
|
||||
using value_type = boost::property_tree::ptree;
|
||||
using value_type = boost::json::value;
|
||||
|
||||
class reader
|
||||
class reader;
|
||||
class writer;
|
||||
};
|
||||
```
|
||||
|
Reference in New Issue
Block a user