mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-15 15:40:56 +01:00
64 lines
1.6 KiB
C++
64 lines
1.6 KiB
C++
|
#ifndef ARABICA_XSLT_TEMPLATE_HPP
|
||
|
#define ARABICA_XSLT_TEMPLATE_HPP
|
||
|
|
||
|
#include "xslt_item.hpp"
|
||
|
|
||
|
namespace Arabica
|
||
|
{
|
||
|
namespace XSLT
|
||
|
{
|
||
|
|
||
|
class Template : public ItemContainer
|
||
|
{
|
||
|
public:
|
||
|
Template(const std::string& name,
|
||
|
const std::string& mode,
|
||
|
const std::string& priority) :
|
||
|
matches_(),
|
||
|
name_(name),
|
||
|
mode_(mode)
|
||
|
{
|
||
|
} // Template
|
||
|
|
||
|
Template(const std::vector<Arabica::XPath::MatchExpr<std::string> >& matches,
|
||
|
const std::string& name,
|
||
|
const std::string& mode,
|
||
|
const std::string& priority) :
|
||
|
matches_(matches),
|
||
|
name_(name),
|
||
|
mode_(mode)
|
||
|
{
|
||
|
if(!priority.empty())
|
||
|
{
|
||
|
float p = boost::lexical_cast<float>(priority);
|
||
|
for(std::vector<Arabica::XPath::MatchExpr<std::string> >::iterator m = matches_.begin(), me = matches_.end(); m != me; ++m)
|
||
|
m->priority_ = p;
|
||
|
} // if ...
|
||
|
} // Template
|
||
|
|
||
|
virtual ~Template()
|
||
|
{
|
||
|
} // ~Template
|
||
|
|
||
|
virtual void execute(const DOM::Node<std::string>& node, ExecutionContext& context) const
|
||
|
{
|
||
|
execute_children(node, context);
|
||
|
} // execute
|
||
|
|
||
|
const std::vector<Arabica::XPath::MatchExpr<std::string> >& compiled_matches() const { return matches_; }
|
||
|
bool has_name() const { return !name_.empty(); }
|
||
|
const std::string& name() const { return name_; }
|
||
|
const std::string& mode() const { return mode_; }
|
||
|
|
||
|
private:
|
||
|
std::vector<Arabica::XPath::MatchExpr<std::string> > matches_;
|
||
|
std::string name_;
|
||
|
std::string mode_;
|
||
|
}; // class Template
|
||
|
|
||
|
} // namespace XSLT
|
||
|
} // namespace Arabica
|
||
|
|
||
|
#endif // ARABICA_XSLT_TEMPLATE_HPP
|
||
|
|