DRDE/ACTK1_0/se/LPE/LPExtension.cpp
Ren RenJuan 0bf70c6e42 *
2014-01-23 02:59:22 +00:00

14 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;
}