DRDE/ACTK1_0/se/LPE/LPExtension.cpp

31 lines
538 B
C++
Raw Normal View History

2014-01-24 16:43:07 +00:00
/*
* 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;
}