DRDE/ACTK1_0/se/LPE/LPLaunch.cpp

17 lines
459 B
C++
Raw Normal View History

2014-01-23 02:59:22 +00:00
#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)
{
}