arabica/include/XSLT/impl/handler/xslt_constants.hpp

30 lines
671 B
C++
Raw Normal View History

2007-07-19 17:01:42 +00:00
#ifndef ARABICA_XSLT_CONSTANTS_HPP
#define ARABICA_XSLT_CONSTANTS_HPP
namespace Arabica
{
namespace XSLT
{
2012-11-09 19:17:13 +00:00
template<class string_type, class string_adaptor = Arabica::default_string_adaptor<string_type> >
2007-07-19 17:01:42 +00:00
struct StylesheetConstant
{
2012-11-09 19:17:13 +00:00
static const string_type& NamespaceURI()
2007-07-19 17:01:42 +00:00
{
2012-11-09 19:17:13 +00:00
static string_type namespaceURI = "http://www.w3.org/1999/XSL/Transform";
2007-07-19 17:01:42 +00:00
return namespaceURI;
} // XSLTNamespaceURI
2012-11-09 19:17:13 +00:00
static const string_type& Version()
2007-07-19 17:01:42 +00:00
{
2012-11-09 19:17:13 +00:00
static string_type version = "1.0";
2007-07-19 17:01:42 +00:00
return version;
} // Version
}; // struct StylesheetConstant
} // namespace XSLT
} // namespace Arabica
#endif // ARABICA_XSLT_CONSTANTS_HPP