mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-27 21:58:30 +01:00
40 lines
954 B
C++
40 lines
954 B
C++
#ifndef ARABICA_XSLT_IF_HPP
|
|
#define ARABICA_XSLT_IF_HPP
|
|
|
|
#include "xslt_item.hpp"
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace XSLT
|
|
{
|
|
|
|
template<class stringT, class adaptorT>
|
|
class If : public ItemContainer<stringT, adaptorT>
|
|
{
|
|
public:
|
|
typedef stringT string_type;
|
|
typedef adaptorT string_adaptor;
|
|
|
|
If(Arabica::XPath::XPathExpressionPtr<string_type, string_adaptor> test) :
|
|
test_(test)
|
|
{
|
|
} // If
|
|
|
|
virtual ~If() { }
|
|
|
|
virtual void execute(const DOM::Node<string_type, string_adaptor>& node,
|
|
ExecutionContext<string_type, string_adaptor>& context) const
|
|
{
|
|
ChainStackFrame<string_type, string_adaptor> frame(context);
|
|
if(test_->evaluateAsBool(node, context.xpathContext()))
|
|
execute_children(node, context);
|
|
} // execute
|
|
|
|
private:
|
|
Arabica::XPath::XPathExpressionPtr<string_type, string_adaptor> test_;
|
|
}; // class If
|
|
|
|
} // namespace XSLT
|
|
} // namespace Arabica
|
|
#endif
|
|
|