mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:07:35 +00:00
AK: Make it easy to convert between JsonValue and IPv4Address.
They still use string storage, but this change makes it nice and easy to work with IPv4 addresses in JSON data.
This commit is contained in:
parent
d8f1a7e046
commit
7bb1e465c6
2 changed files with 15 additions and 0 deletions
|
@ -110,6 +110,11 @@ JsonValue::JsonValue(const String& value)
|
|||
}
|
||||
}
|
||||
|
||||
JsonValue::JsonValue(const IPv4Address& value)
|
||||
: JsonValue(value.to_string())
|
||||
{
|
||||
}
|
||||
|
||||
JsonValue::JsonValue(const JsonObject& value)
|
||||
: m_type(Type::Object)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue