arabica/include/XSLT/impl/handler/xslt_constants.hpp
2012-11-09 19:17:13 +00:00

29 lines
671 B
C++

#ifndef ARABICA_XSLT_CONSTANTS_HPP
#define ARABICA_XSLT_CONSTANTS_HPP
namespace Arabica
{
namespace XSLT
{
template<class string_type, class string_adaptor = Arabica::default_string_adaptor<string_type> >
struct StylesheetConstant
{
static const string_type& NamespaceURI()
{
static string_type namespaceURI = "http://www.w3.org/1999/XSL/Transform";
return namespaceURI;
} // XSLTNamespaceURI
static const string_type& Version()
{
static string_type version = "1.0";
return version;
} // Version
}; // struct StylesheetConstant
} // namespace XSLT
} // namespace Arabica
#endif // ARABICA_XSLT_CONSTANTS_HPP