2014-01-23 02:59:22 +00:00
|
|
|
#include "xml/XMLHelper.hpp"
|
|
|
|
|
#include "LPLaunch.hpp"
|
|
|
|
|
|
|
|
|
|
void LPLaunch::appendData(XMLWriter* xmlWriter, DOMElement* addElement)
|
|
|
|
|
{
|
2014-01-24 16:38:51 +00:00
|
|
|
DOMElement* lpDataElement = xmlWriter->appendChild(addElement, "claims");
|
|
|
|
|
XMLHelper::setTextContent(xmlWriter->appendChild(lpDataElement, "claims"), claims);
|
2014-01-23 02:59:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
void LPLaunch::createXMLElement(XMLWriter* xmlWriter, DOMElement* addElement)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|