/* ------------------------------------------  To call the XMlParser to start processing and generating the tree  --------------------------------------*/
void XmlDocument::generateXMLTree(std::string input_text)
{
	XMLParser xmlp;
	pDocElement_ = xmlp.Get_from_XMLR(input_text);
}