#ifndef __UT_JSON_HPP__ #define __UT_JSON_HPP__ #include namespace unitree { namespace common { typedef std::map JsonMap; typedef std::vector JsonArray; Any FromJsonString(const std::string& s); std::string ToJsonString(const Any& a, bool pretty = false); static inline bool IsNull(const Any& a) { return a.Empty(); } static inline bool IsJsonArray(const Any& a) { return a.GetTypeInfo() == typeid(JsonArray); } static inline bool IsJsonMap(const Any& a) { return a.GetTypeInfo() == typeid(JsonMap); } static inline bool IsJsonObject(const Any& a) { return IsJsonMap(a); } } } #endif//__UT_JSON_HPP__