| 832 | const XMLElement* NextSiblingElement( const char* name = 0 ) const; |
| 833 | |
| 834 | XMLElement* NextSiblingElement( const char* name = 0 ) { |
| 835 | return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->NextSiblingElement( name ) ); |
| 836 | } |
| 837 | |
| 838 | /** |
| 839 | Add a child node as the last (right) child. |
nothing calls this directly
no test coverage detected