| 845 | XMLNode* InsertEndChild( XMLNode* addThis ); |
| 846 | |
| 847 | XMLNode* LinkEndChild( XMLNode* addThis ) { |
| 848 | return InsertEndChild( addThis ); |
| 849 | } |
| 850 | /** |
| 851 | Add a child node as the first (left) child. |
| 852 | If the child node is already part of the document, |
nothing calls this directly
no outgoing calls
no test coverage detected