16 lines
376 B
C++
16 lines
376 B
C++
#include "xml/XMLHelper.hpp"
|
|
#include "LPLaunch.hpp"
|
|
|
|
void LPLaunch::appendData(XMLWriter* xmlWriter, DOMElement* addElement)
|
|
{
|
|
DOMElement* lpDataElement = xmlWriter->appendChild(addElement, "claims");
|
|
XMLHelper::setTextContent(xmlWriter->appendChild(lpDataElement, "claims"), claims);
|
|
|
|
|
|
}
|
|
void LPLaunch::createXMLElement(XMLWriter* xmlWriter, DOMElement* addElement)
|
|
{
|
|
|
|
|
|
}
|