mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-29 10:17:39 +02:00
Test that boolean values can be stored in a JsonObject
This commit is contained in:
@ -7,17 +7,17 @@
|
||||
class JsonValue
|
||||
{
|
||||
public:
|
||||
|
||||
JsonValue(JsonNode* node)
|
||||
|
||||
explicit JsonValue(JsonNode* node)
|
||||
: _node(node)
|
||||
{
|
||||
}
|
||||
|
||||
// void operator=(const JsonObject& object);
|
||||
void operator=(bool);
|
||||
void operator=(double);
|
||||
void operator=(int);
|
||||
|
||||
// operator JsonObject();
|
||||
|
||||
operator bool();
|
||||
operator double();
|
||||
operator int();
|
||||
|
||||
|
Reference in New Issue
Block a user