| 659 | // ws* ( nodeElement ws* )* |
| 660 | |
| 661 | static void |
| 662 | RDF_NodeElementList ( XMP_Node * xmpParent, const XML_Node & xmlParent, bool isTopLevel ) |
| 663 | { |
| 664 | XMP_Assert ( isTopLevel ); |
| 665 | |
| 666 | XML_cNodePos currChild = xmlParent.content.begin(); // *** Change these loops to the indexed pattern. |
| 667 | XML_cNodePos endChild = xmlParent.content.end(); |
| 668 | |
| 669 | for ( ; currChild != endChild; ++currChild ) { |
| 670 | if ( (*currChild)->IsWhitespaceNode() ) continue; |
| 671 | RDF_NodeElement ( xmpParent, **currChild, isTopLevel ); |
| 672 | } |
| 673 | |
| 674 | } // RDF_NodeElementList |
| 675 | |
| 676 | |
| 677 | // ================================================================================================= |
no test coverage detected