* @brief Utility function to release memory allocated by this element and returned to the caller. * * @param string The string to release. Passing NULL is valid and does nothing. *************************************************************/
| 261 | * @param string The string to release. Passing NULL is valid and does nothing. |
| 262 | *************************************************************/ |
| 263 | void ClientXML::DeleteString(char* pString) |
| 264 | { |
| 265 | ElementXML::DeleteString(pString) ; |
| 266 | } |
| 267 | |
| 268 | /************************************************************* |
| 269 | * @brief Performs an allocation and then copies the contents of the passed in string to the newly allocated string. |