|
@@ -197,7 +197,10 @@ extern "C" {
|
197
|
197
|
|
198
|
198
|
// Return the type of a member value.
|
199
|
199
|
cmJsRC_t cmJsonMemberType( const cmJsonNode_t* objectNodePtr, const char* label, unsigned* typeIdRef );
|
200
|
|
-
|
|
200
|
+
|
|
201
|
+ // Return the pair at the specified index. Use cmJsonChildCount() to get the count of pairs in the object.
|
|
202
|
+ cmJsonNode_t* cmJsonMemberAtIndex( cmJsonNode_t* objNodePtr, unsigned idx );
|
|
203
|
+
|
201
|
204
|
// Return values associated with the member values in the object
|
202
|
205
|
// pointed to by object objectNodePtr.
|
203
|
206
|
cmJsRC_t cmJsonUIntMember( const cmJsonNode_t* objectNodePtr, const char* label, unsigned* retPtr );
|