2007-07-19 19:01:42 +02:00
|
|
|
#ifndef ARABICA_XSLT_CONSTANTS_HPP
|
|
|
|
#define ARABICA_XSLT_CONSTANTS_HPP
|
|
|
|
|
|
|
|
namespace Arabica
|
|
|
|
{
|
|
|
|
namespace XSLT
|
|
|
|
{
|
|
|
|
|
|
|
|
struct StylesheetConstant
|
|
|
|
{
|
2007-11-09 00:05:46 +01:00
|
|
|
static const std::string& NamespaceURI()
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
|
|
|
static std::string namespaceURI = "http://www.w3.org/1999/XSL/Transform";
|
|
|
|
return namespaceURI;
|
|
|
|
} // XSLTNamespaceURI
|
|
|
|
|
2007-11-09 00:05:46 +01:00
|
|
|
static const std::string& Version()
|
2007-07-19 19:01:42 +02:00
|
|
|
{
|
|
|
|
static std::string version = "1.0";
|
|
|
|
return version;
|
|
|
|
} // Version
|
|
|
|
}; // struct StylesheetConstant
|
|
|
|
|
|
|
|
} // namespace XSLT
|
|
|
|
} // namespace Arabica
|
|
|
|
|
|
|
|
#endif // ARABICA_XSLT_CONSTANTS_HPP
|
|
|
|
|