![]() |
||
![]() |
![]() |
![]() |
![]() |
PmtMetadataIterator Class ReferencePmtMetadataIterator is provided for iterating over multiple metadata instances. More...
Detailed DescriptionPmtMetadataIterator is provided for iterating over multiple metadata instances.PmtMetadataIterator instances are returned from methods that need to return a reference to metadata instances. This is a fairly basic interator class. Internal pointers are reset with the start() method, which also return a reference to the first metadata instance. Additional references to metadata instances can be had by calling the next() method. The next() will return a NULL reference when the end of the list is reached. Example usage:
PmtMetadataIterator iter = rootMd->getMetadata( "*" ) ; PmtMetadataPtr child = iter.start() ; while( child != NULL ) { // do something with child.. // now get the next metadata instance child = iter.next() ; }
Member Typedef Documentation
Constructor & Destructor Documentation
Member Function Documentation
The documentation for this class was generated from the following files: |