1
This commit is contained in:
parent
9b63b8fee2
commit
b17543dae9
@ -429,6 +429,15 @@ namespace a8
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void XObject::GetKeys(std::vector<std::string>& keys)
|
||||||
|
{
|
||||||
|
if (type_ == a8::XOT_OBJECT) {
|
||||||
|
for (auto& pair : *value_.object_value) {
|
||||||
|
keys.push_back(pair.first);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void XObject::JsonValueToXObject(Json::Value& json_val, a8::XObject& xobject)
|
void XObject::JsonValueToXObject(Json::Value& json_val, a8::XObject& xobject)
|
||||||
{
|
{
|
||||||
Json::ValueType val_type = json_val.type();
|
Json::ValueType val_type = json_val.type();
|
||||||
|
@ -56,6 +56,7 @@ namespace a8
|
|||||||
std::string ToJsonStr();
|
std::string ToJsonStr();
|
||||||
void ToUrlEncodeStr(std::string& data);
|
void ToUrlEncodeStr(std::string& data);
|
||||||
void ToKVList(std::map<std::string, std::string>& kv_list);
|
void ToKVList(std::map<std::string, std::string>& kv_list);
|
||||||
|
void GetKeys(std::vector<std::string>& keys);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void JsonValueToXObject(Json::Value& json_val, a8::XObject& xobject);
|
void JsonValueToXObject(Json::Value& json_val, a8::XObject& xobject);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user