|
identt
|
Public Types | |
| enum | JsonElemE { IDENTT_JE_STRING = 0, IDENTT_JE_DOUBLE = 1, IDENTT_JE_INT64 = 2, IDENTT_JE_BOOL = 3 } |
Public Member Functions | |
| JsonElem (std::string name, std::string value) | |
| Constructor : string. More... | |
| JsonElem (std::string name, float value) | |
| Constructor : float. More... | |
| JsonElem (const char *name, float value) | |
| Constructor : float. More... | |
| JsonElem (std::string name, double value) | |
| Constructor : double. More... | |
| JsonElem (const char *name, double value) | |
| Constructor : double. More... | |
| JsonElem (std::string name, int32_t value) | |
| Constructor : int32_t. More... | |
| JsonElem (const char *name, int32_t value) | |
| Constructor : int32_t. More... | |
| JsonElem (std::string name, uint32_t value) | |
| Constructor : uint32_t. More... | |
| JsonElem (const char *name, uint32_t value) | |
| Constructor : uint32_t. More... | |
| JsonElem (std::string name, int64_t value) | |
| Constructor : int64_t. More... | |
| JsonElem (const char *name, int64_t value) | |
| Constructor : int64_t. More... | |
| JsonElem (std::string name, uint64_t value) | |
| Constructor : uint64_t. More... | |
| JsonElem (const char *name, uint64_t value) | |
| Constructor : uint64_t. More... | |
| JsonElem (std::string name, bool value) | |
| Constructor : bool. More... | |
| JsonElem (const char *name, bool value) | |
| Constructor : bool. More... | |
| JsonElem ()=delete | |
| Constructor deleted. More... | |
| JsonElem (std::string, std::string, JsonElemE)=delete | |
Public Attributes | |
| const std::string | nam |
| const std::string | val |
| enum identt::query::JsonElem::JsonElemE | typ |
| identt::query::JsonElem::JsonElem | ( | std::string | name, |
| std::string | value | ||
| ) |
Constructor : string.
| name | std::string name |
| value | std::string value to populate |
|
explicit |
Constructor : float.
| name | std::string name |
| value | float value to populate |
|
explicit |
Constructor : float.
| name | const char* name |
| value | float value to populate |
|
explicit |
Constructor : double.
| name | std::string name |
| value | double value to populate |
|
explicit |
Constructor : double.
| name | const char* name |
| value | double value to populate |
|
explicit |
Constructor : int32_t.
| name | std::string name |
| value | int32_t value to populate |
|
explicit |
Constructor : int32_t.
| name | const char* name |
| value | int32_t value to populate |
|
explicit |
Constructor : uint32_t.
| name | std::string name |
| value | std::string value to populate |
|
explicit |
Constructor : uint32_t.
| name | const char* name |
| value | const char* value to populate |
|
explicit |
Constructor : int64_t.
| name | std::string name |
| value | int64_t value to populate |
|
explicit |
Constructor : int64_t.
| name | const char* name |
| value | int64_t value to populate |
|
explicit |
Constructor : uint64_t.
| name | std::string name |
| value | std::string value to populate |
|
explicit |
Constructor : uint64_t.
| name | const char* name |
| value | const char* value to populate |
|
explicit |
Constructor : bool.
| name | std::string name |
| value | bool value to populate |
|
explicit |
Constructor : bool.
| name | const char* name |
| value | bool value to populate |
|
explicitdelete |
Constructor deleted.
1.8.12