| 763 | const XMLElement* NextSiblingElement( const char* value=0 ) const; |
| 764 | |
| 765 | XMLElement* NextSiblingElement( const char* value=0 ) { |
| 766 | return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->NextSiblingElement( value ) ); |
| 767 | } |
| 768 | |
| 769 | /** |
| 770 | Add a child node as the last (right) child. |
nothing calls this directly
no test coverage detected