Added parse() for streams.
This commit is contained in:
parent
2855c70c27
commit
87746280ca
1 changed files with 6 additions and 0 deletions
|
@ -1716,6 +1716,12 @@ class basic_json
|
|||
return parser(s).parse();
|
||||
}
|
||||
|
||||
/// deserialize from stream
|
||||
static basic_json parse(std::istream& i)
|
||||
{
|
||||
return parser(i).parse();
|
||||
}
|
||||
|
||||
/// deserialize from stream
|
||||
friend std::istream& operator>>(std::istream& i, basic_json& j)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue