21 lines
434 B
C++
21 lines
434 B
C++
|
#include "LPCheck.hpp"
|
||
|
#include "xml/XMLHelper.hpp"
|
||
|
|
||
|
|
||
|
namespace {
|
||
|
Extension& launchPhaseExtension() {
|
||
|
static Extension* lpExtension = new LPLaunch();
|
||
|
return *lpExtension;
|
||
|
}
|
||
|
}; // anonymous namespace
|
||
|
|
||
|
void LPCheck::setExtension ()
|
||
|
{
|
||
|
|
||
|
DOMElement *lpeCreate =
|
||
|
xmlWriter->appendChild( xmlWriter->appendChild( command, "extension"),
|
||
|
"check", launchPhaseExtension().getURI());
|
||
|
|
||
|
|
||
|
}
|