2014-01-15 22:28:15 +00:00
|
|
|
#include "se/StandardObjectType.hpp"
|
|
|
|
#include "xml/XMLHelper.hpp"
|
2014-01-21 23:01:41 +00:00
|
|
|
#include "OTE/OteExtension.hpp"
|
2014-01-17 01:46:48 +00:00
|
|
|
#include "OTE/LPECreateCommand.hpp"
|
2014-01-21 23:01:41 +00:00
|
|
|
#include "se/CommandExtension.hpp"
|
2014-01-15 22:28:15 +00:00
|
|
|
|
2014-01-21 23:01:41 +00:00
|
|
|
void LPECreateCommand::addToCommand(const Command &command) const
|
2014-01-15 22:28:15 +00:00
|
|
|
{
|
2014-01-21 23:01:41 +00:00
|
|
|
XMLWriter* xmlWriter = command.getXmlWriter();
|
|
|
|
DOMElement* extensionElement = command.getExtensionElement();
|
|
|
|
DOMElement* createElement = xmlWriter->appendChild(extensionElement,
|
|
|
|
"create", OteExtension().getURI());
|
2014-01-15 22:28:15 +00:00
|
|
|
|
2014-01-21 23:01:41 +00:00
|
|
|
int a = 0;
|
2014-01-15 22:28:15 +00:00
|
|
|
}
|