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