----------------------------------------------------------------------------- Get true if XML text parses correctly. -----------------------------------------------------------------------------
| 151 | // Get true if XML text parses correctly. |
| 152 | // ----------------------------------------------------------------------------- |
| 153 | S32 SimXMLDocument::parse(const char* rText) |
| 154 | { |
| 155 | reset(); |
| 156 | m_qDocument->Parse( rText ); |
| 157 | return 1; |
| 158 | } |
| 159 | |
| 160 | // ----------------------------------------------------------------------------- |
| 161 | // Clear contents of XML document. |