| 1776 | |
| 1777 | |
| 1778 | void XMLDocument::SetError( XMLError error, const char* str1, const char* str2 ) { |
| 1779 | TIXMLASSERT( error >= 0 && error < XML_ERROR_COUNT ); |
| 1780 | _errorID = error; |
| 1781 | _errorStr1 = str1; |
| 1782 | _errorStr2 = str2; |
| 1783 | } |
| 1784 | |
| 1785 | const char* XMLDocument::ErrorName() const { |
| 1786 | TIXMLASSERT( _errorID >= 0 && _errorID < XML_ERROR_COUNT ); |
no outgoing calls
no test coverage detected