| 1925 | |
| 1926 | |
| 1927 | void XMLDocument::SetError( XMLError error, const char* str1, const char* str2 ) |
| 1928 | { |
| 1929 | TIXMLASSERT( error >= 0 && error < XML_ERROR_COUNT ); |
| 1930 | _errorID = error; |
| 1931 | _errorStr1 = str1; |
| 1932 | _errorStr2 = str2; |
| 1933 | } |
| 1934 | |
| 1935 | const char* XMLDocument::ErrorName() const |
| 1936 | { |
no outgoing calls
no test coverage detected