DRDE/ACTK1_0/OTE/OteExtension.cpp

15 lines
307 B
C++
Raw Normal View History

2014-01-15 21:41:16 +00:00
#include "OTE/OteExtension.hpp"
2014-01-15 18:29:15 +00:00
std::string& OteExtension::getURI() const
{
2014-01-15 21:41:16 +00:00
static std::string uri = "urn:X-ote:params:xml:ns:oteext-1.0";
2014-01-15 18:29:15 +00:00
return uri;
}
std::string& OteExtension::getSchemaLocation() const
{
2014-01-15 21:41:16 +00:00
static std::string loc = "urn:X-ote:params:xml:ns:oteext-1.0 oteext-1.0.xsd";
2014-01-15 18:29:15 +00:00
return loc;
}