31 lines
538 B
C++
31 lines
538 B
C++
/*
|
|
* LPExtension.cpp
|
|
*
|
|
* Created on: Jan 24, 2014
|
|
* Author: jdaugherty
|
|
*/
|
|
|
|
#include <se/LPE/LPExtension.hpp>
|
|
|
|
LPExtension::LPExtension() {
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
LPExtension::~LPExtension() {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|
|
|
|
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;
|
|
}
|