15 lines
305 B
C++
15 lines
305 B
C++
#include "se/LPE/LPExtension.hpp"
|
|
|
|
std::string& LPExtension::getURI() const
|
|
{
|
|
static std::string uri = "urn:ietf:params:xml:ns:launch-1.0";
|
|
return uri;
|
|
}
|
|
|
|
std::string& LPExtension::getSchemaLocation() const
|
|
{
|
|
static std::string loc = "urn:ietf:params:xml:ns:launch-1.0 launch-1.0.xsd";
|
|
return loc;
|
|
}
|
|
|