| 2113 | |
| 2114 | |
| 2115 | void XMLDocument::SetError( XMLError error, const char* str1, const char* str2 ) |
| 2116 | { |
| 2117 | TIXMLASSERT( error >= 0 && error < XML_ERROR_COUNT ); |
| 2118 | _errorID = error; |
| 2119 | _errorStr1 = str1; |
| 2120 | _errorStr2 = str2; |
| 2121 | } |
| 2122 | |
| 2123 | const char* XMLDocument::ErrorName() const |
| 2124 | { |
no outgoing calls
no test coverage detected