32 lines
552 B
C++
32 lines
552 B
C++
|
/*
|
||
|
* SMDExtension.cpp
|
||
|
*
|
||
|
* Created on: Jan 28, 2014
|
||
|
* Author: jdaugherty
|
||
|
*/
|
||
|
|
||
|
#include "SMDExtension.hpp"
|
||
|
|
||
|
SMDExtension::SMDExtension() {
|
||
|
// TODO Auto-generated constructor stub
|
||
|
|
||
|
}
|
||
|
|
||
|
SMDExtension::~SMDExtension() {
|
||
|
// TODO Auto-generated destructor stub
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
std::string& SMDExtension::getURI() const
|
||
|
{
|
||
|
static std::string uri = "urn:ietf:params:xml:ns:signedMark-1.0";
|
||
|
return uri;
|
||
|
}
|
||
|
|
||
|
std::string& SMDExtension::getSchemaLocation() const
|
||
|
{
|
||
|
static std::string loc = "urn:ietf:params:xml:ns:signedMark-1.0 signedMark-1.0.xsd";
|
||
|
return loc;
|
||
|
}
|