Open Lighting Architecture
Latest Git
|
JsonNumber is the base class for various integer / number classes.
This allows inequality comparisons between values that represent numbers.
Public Member Functions | |
virtual bool | MultipleOf (const JsonNumber &other) const =0 |
Checks if the remainder if non-0;. | |
virtual bool | operator< (const JsonNumber &other) const =0 |
Less than operator. | |
bool | operator<= (const JsonNumber &other) const |
Less than or equals operator. | |
bool | operator> (const JsonNumber &other) const |
Greater than operator. | |
bool | operator>= (const JsonNumber &other) const |
Greater than or equals operator. | |
Public Member Functions inherited from ola::web::JsonValue | |
virtual JsonValue * | LookupElement (const JsonPointer &pointer) |
Locate the JsonValue referred to by the JSON Pointer. | |
virtual bool | operator== (const JsonValue &other) const =0 |
Equality operator. More... | |
virtual bool | operator!= (const JsonValue &other) const |
Not-equals operator. | |
virtual void | Accept (JsonValueVisitorInterface *visitor)=0 |
The Accept method for the visitor pattern. More... | |
virtual void | Accept (JsonValueConstVisitorInterface *visitor) const =0 |
The Accept (const) method for the visitor pattern. More... | |
virtual JsonValue * | Clone () const =0 |
Make a copy of this JsonValue. | |