mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-28 22:23:21 +01:00
35 lines
808 B
C++
35 lines
808 B
C++
#ifndef ARABICA_XSLT_CALL_TEMPLATE_HPP
|
|
#define ARABICA_XSLT_CALL_TEMPLATE_HPP
|
|
|
|
#include "xslt_compiled_stylesheet.hpp"
|
|
#include "xslt_with_param.hpp"
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace XSLT
|
|
{
|
|
|
|
class CallTemplate : public Item,
|
|
public WithParamable
|
|
{
|
|
public:
|
|
CallTemplate(const std::pair<std::string, std::string>& name) :
|
|
name_(name)
|
|
{
|
|
} // CallTemplate
|
|
|
|
virtual void execute(const DOM::Node<std::string>& node, ExecutionContext& context) const
|
|
{
|
|
ParamPasser passer(*this, node, context);
|
|
context.stylesheet().callTemplate(name_, node, context);
|
|
} // execute
|
|
|
|
private:
|
|
const std::pair<std::string, std::string> name_;
|
|
}; // class CallTemplate
|
|
|
|
} // namespace XSLT
|
|
} // namespace Arabica
|
|
|
|
#endif // ARABICA_XSLT_CALL_TEMPLATE_HPP
|
|
|