15 lines
307 B
C++
15 lines
307 B
C++
#include "OTE/OteExtension.hpp"
|
|
|
|
std::string& OteExtension::getURI() const
|
|
{
|
|
static std::string uri = "urn:X-ote:params:xml:ns:oteext-1.0";
|
|
return uri;
|
|
}
|
|
|
|
std::string& OteExtension::getSchemaLocation() const
|
|
{
|
|
static std::string loc = "urn:X-ote:params:xml:ns:oteext-1.0 oteext-1.0.xsd";
|
|
return loc;
|
|
}
|
|
|