objectForName( )

Gets the object for a specific name.

Interface
PODSObjectMgr
IDL definition
PODSObject objectForName(PODSString name);
JavaScript synopsis

Not applicable

C synopsis
PODSObject* PODSobjectForName(
  PODSObjectMgr* objmgr,
  PODSString name
);
Parameters
  • objmgr   The PODSObjectMgr object.

  • name   [in] Name of object to return.

Returns

PODSObject for specified name.

Remarks

The PODSObjectMgr implementation of objectForName( ) walks through all the registered PODS objects until an object matching the specified name is found, while the PODSObjectSrc implementation only checks the specified PODS object.

See also

PODSObjectSrc object's objectForName( )