| 195 | TiXmlString& append (const char* str, size_type len); |
| 196 | |
| 197 | void swap (TiXmlString& other) |
| 198 | { |
| 199 | Rep* r = rep_; |
| 200 | rep_ = other.rep_; |
| 201 | other.rep_ = r; |
| 202 | } |
| 203 | |
| 204 | private: |
| 205 |
nothing calls this directly
no outgoing calls
no test coverage detected