| 698 | struct NodeInfo |
| 699 | { |
| 700 | NodeInfo( rapidxml::xml_node<> * n = nullptr ) : |
| 701 | node( n ), |
| 702 | child( n->first_node() ), |
| 703 | size( XMLInputArchive::getNumChildren( n ) ), |
| 704 | name( nullptr ) |
| 705 | { } |
| 706 | |
| 707 | //! Advances to the next sibling node of the child |
| 708 | /*! If this is the last sibling child will be null after calling */ |
nothing calls this directly
no test coverage detected