本文整理汇总了C++中CPLJSONObject::GetInternalHandle方法的典型用法代码示例。如果您正苦于以下问题:C++ CPLJSONObject::GetInternalHandle方法的具体用法?C++ CPLJSONObject::GetInternalHandle怎么用?C++ CPLJSONObject::GetInternalHandle使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CPLJSONObject
的用法示例。
在下文中一共展示了CPLJSONObject::GetInternalHandle方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Add
/**
* Add new key - value pair to json object.
* @param osName Key name.
* @param oValue Json object value.
*
* @since GDAL 2.3
*/
void CPLJSONObject::Add(const std::string &osName, const CPLJSONObject &oValue)
{
std::string objectName;
CPLJSONObject object = GetObjectByPath( osName, objectName );
if( object.IsValid() &&
json_object_get_type(TO_JSONOBJ(object.m_poJsonObject)) ==
json_type_object )
{
json_object_object_add( TO_JSONOBJ(object.GetInternalHandle()),
objectName.c_str(),
json_object_get( TO_JSONOBJ(oValue.GetInternalHandle()) ) );
}
}
示例2: Delete
/**
* Delete json object by key.
* @param osName Key name.
*
* @since GDAL 2.3
*/
void CPLJSONObject::Delete(const std::string &osName)
{
std::string objectName;
CPLJSONObject object = GetObjectByPath( osName, objectName );
if( object.IsValid() )
{
json_object_object_del( TO_JSONOBJ(object.GetInternalHandle()),
objectName.c_str() );
}
}
示例3: GetObj
/**
* Get value by key.
* @param osName Key name.
* @return Json object.
*
* @since GDAL 2.3
*/
CPLJSONObject CPLJSONObject::GetObj(const std::string &osName) const
{
std::string objectName;
CPLJSONObject object = GetObjectByPath( osName, objectName );
if( object.IsValid() )
{
json_object* poVal = nullptr;
if(json_object_object_get_ex( TO_JSONOBJ(object.GetInternalHandle()),
objectName.c_str(), &poVal ) )
{
return CPLJSONObject( objectName, poVal );
}
}
return CPLJSONObject( "", nullptr );
}