1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-29 23:01:16 +03:00

Added parse() for streams.

This commit is contained in:
Aaron Burghardt
2015-03-01 06:21:47 -05:00
parent 2855c70c27
commit 87746280ca

View File

@ -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)
{