DRDE/ACTK1_0/se/AeExtension.cpp
Ren RenJuan 681188a22d push
2014-01-08 05:00:04 +00:00

14 lines
298 B
C++

#include "se/AeExtension.hpp"
std::string& AeExtension::getURI() const
{
static std::string uri = "urn:X-ae:params:xml:ns:aeext-1.0";
return uri;
}
std::string& AeExtension::getSchemaLocation() const
{
static std::string loc = "urn:X-ae:params:xml:ns:aeext-1.0 aeext-1.0.xsd";
return loc;
}