22 #include "mythjsonbinder.h" 33 void JSON::BindObject(
const Node& node,
void *obj,
const bindings_t *bl)
47 std::string value(field.GetStringValue());
57 err = string_to_int8(value.c_str(), &num);
64 err = string_to_int16(value.c_str(), &num);
71 err = string_to_int32(value.c_str(), &num);
78 err = string_to_int64(value.c_str(), &num);
85 err = string_to_uint8(value.c_str(), &num);
92 err = string_to_uint16(value.c_str(), &num);
99 err = string_to_uint32(value.c_str(), &num);
105 double num = atof(value.c_str());
111 bool b = (strcmp(value.c_str(),
"true") == 0 ?
true :
false);
118 err = string_to_time(value.c_str(), &time);
126 Myth::DBG(DBG_ERROR,
"%s: failed (%d) field \"%s\" type %d: %s\n", __FUNCTION__, err, bl->
attr_bind[i].
field, bl->
attr_bind[i].
type, value.c_str());
Brings together all attribute bindings of an object.
void(* set)(void *, const void *)
This is the main namespace that encloses all public classes.