DRDE/ACTK1_0/se/SyncExtension.cpp
Ren RenJuan 2f1e7252fd *
2014-01-25 17:23:41 +00:00

16 lines
320 B
C++

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