mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-28 22:23:21 +01:00
21 lines
402 B
C++
21 lines
402 B
C++
#ifndef ARABICA_XSLT_APPLY_IMPORTS_HPP
|
|
#define ARABICA_XSLT_APPLY_IMPORTS_HPP
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace XSLT
|
|
{
|
|
|
|
class ApplyImports : public Item
|
|
{
|
|
public:
|
|
virtual void execute(const DOM::Node<std::string>& node, ExecutionContext& context) const
|
|
{
|
|
context.stylesheet().applyImports(node, context);
|
|
} // execute
|
|
}; // class ApplyImports
|
|
|
|
} // namespace XSLT
|
|
} // namespace Arabica
|
|
|
|
#endif
|